[issue17432] PyUnicode_ functions not accessible in Limited API on Windows

Bill Dirks report at bugs.python.org
Sat Mar 16 06:57:35 CET 2013


Bill Dirks added the comment:

A great number of PyUnicode functions are already added to the Limited API. That is, the declarations are outside of #ifndef Py_LIMITED_API guards in the header files, and the symbols are included in python3.lib and exported from python3.dll. (in 3.3.0)

Can't those functions link to the functions of the same name in python33.dll?

In other words, for example, PyUnicode_FromString in the python3.dll should link to PyUnicode_FromString in python33.dll, not PyUnicodeUCS2_FromString (which doesn't exist in python33.dll). Right?

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue17432>
_______________________________________


More information about the Python-bugs-list mailing list