Message106015
In unicodeobject.h, you can see:
# define PyUnicode_CompareWithASCII PyUnicodeUCS2_CompareASCII
...
# define PyUnicode_CompareWithASCII PyUnicodeUCS4_CompareWithASCII
...
PyAPI_FUNC(int) PyUnicode_CompareWithASCIIString(
PyObject *left,
const char *right
);
The defines miss the String suffix :-/
Attached patch adds the suffix but I guess that it breaks backward compatibility. Is it a problem to apply this patch in Python 3.2 (but not in Python 3.1)? |
|
Date |
User |
Action |
Args |
2010-05-18 23:50:23 | vstinner | set | recipients:
+ vstinner |
2010-05-18 23:50:22 | vstinner | set | messageid: <1274226622.99.0.33307621938.issue8761@psf.upfronthosting.co.za> |
2010-05-18 23:50:21 | vstinner | link | issue8761 messages |
2010-05-18 23:50:21 | vstinner | create | |
|