This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author bdirks
Recipients bdirks, loewis
Date 2013-03-16.05:57:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1363413455.27.0.89701976514.issue17432@psf.upfronthosting.co.za>
In-reply-to
Content
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?
History
Date User Action Args
2013-03-16 05:57:35bdirkssetrecipients: + bdirks, loewis
2013-03-16 05:57:35bdirkssetmessageid: <1363413455.27.0.89701976514.issue17432@psf.upfronthosting.co.za>
2013-03-16 05:57:35bdirkslinkissue17432 messages
2013-03-16 05:57:34bdirkscreate