Patch #1213831: Fix typo in unicodedata._getcode.

Will backport to Python 2.4.
This commit is contained in:
Martin v. Löwis 2005-09-18 08:17:56 +00:00
parent 9e28107ce8
commit 8b291e2d66
2 changed files with 3 additions and 1 deletions

View File

@ -143,6 +143,8 @@ Core and builtins
Extension Modules
-----------------
- Patch #1213831: Fix typo in unicodedata._getcode.
- Bug #1007046: os.startfile() did not accept unicode strings encoded in
the file system encoding.

View File

@ -820,7 +820,7 @@ _getcode(const char* name, int namelen, Py_UCS4* code)
pos += len;
find_syllable(pos, &len, &T, TCount, 2);
pos += len;
if (V != -1 && V != -1 && T != -1 && pos-name == namelen) {
if (L != -1 && V != -1 && T != -1 && pos-name == namelen) {
*code = SBase + (L*VCount+V)*TCount + T;
return 1;
}