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

2014-09-21 Thread SilentGhost
Changes by SilentGhost : -- title: ucs2 -> PyUnicode_ functions not accessible in Limited API on Windows ___ Python tracker ___ ___ Py

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

2014-01-27 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

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

2014-01-04 Thread Martin v . Löwis
Martin v. Löwis added the comment: This is now fixed for 3.3 and 3.4. Sorry it took so long. -- ___ Python tracker ___ ___ Python-bugs

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

2014-01-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset ea0aa3e32ab5 by Martin v. Löwis in branch '3.3': Issue #17432: Drop UCS2 from names of Unicode functions in python3.def. http://hg.python.org/cpython/rev/ea0aa3e32ab5 New changeset 0ea09c824d9b by Martin v. Löwis in branch 'default': Merge with 3.3:

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

2013-10-25 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: -> needs patch versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list U

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

2013-10-25 Thread Christian Heimes
Christian Heimes added the comment: Martin, do you want to change the def-file for Python 3.4? -- nosy: +christian.heimes priority: normal -> high versions: +Python 3.4 -Python 3.3 ___ Python tracker __

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

2013-03-16 Thread Martin v . Löwis
Martin v. Löwis added the comment: Ah, I see. Yes, it seems indeed that the def file needs to be changed. -- ___ Python tracker ___ __

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

2013-03-16 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

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

2013-03-15 Thread Bill Dirks
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 tho

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

2013-03-15 Thread Martin v . Löwis
Martin v. Löwis added the comment: The Unicode functions were left out of the limited API precisely because of the UCS2/UCS4 issue. If you have an extension module on a narrow Python build using the limited API, it should work without recompilation on a wide build as well. Now, with Python 3.3

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

2013-03-15 Thread Bill Dirks
New submission from Bill Dirks: This issue was discovered in 3.3.0 on Windows. Haven't looked at other versions. Using the Limited API, the PyUnicode_Xxxx() functions are not accessible. A simple demonstration of the problem: HMODULE p3 = ::LoadLibraryA("C:\\Python33\\DLLs\\python3.dll");