[issue18353] PyUnicode_WRITE_CHAR macro definition missing

2016-04-23 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report Wolf and thanks for the patch Corey. -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed type: compile error -> behavior versions: +Python 3.5, Python 3.6 -Python 3.3

[issue18353] PyUnicode_WRITE_CHAR macro definition missing

2016-04-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 29e555e5956b by Berker Peksag in branch '3.5': Issue #18353: Remove PyUnicode_WRITE_CHAR macro link from c-api/unicode.rst https://hg.python.org/cpython/rev/29e555e5956b New changeset 8c53fdc011a3 by Berker Peksag in branch 'default': Issue #18353:

[issue18353] PyUnicode_WRITE_CHAR macro definition missing

2013-07-12 Thread Corey Brune
Corey Brune added the comment: Hello all, I removed the reference to PyUnicode_WRITE_CHAR macro in unicode.rst. Thanks, Corey -- keywords: +patch nosy: +cbrune Added file: http://bugs.python.org/file30903/unicode.rst.patch ___ Python tracker

[issue18353] PyUnicode_WRITE_CHAR macro definition missing

2013-07-05 Thread STINNER Victor
STINNER Victor added the comment: I don't remember where this macro come from. It is mention in my review of the PEP (the text of the PEP, not the implementation): http://mail.python.org/pipermail/python-dev/2011-September/113668.html PyUnicode_WRITE_CHAR() was removed from the PEP by the

[issue18353] PyUnicode_WRITE_CHAR macro definition missing

2013-07-04 Thread Martin v . Löwis
Martin v. Löwis added the comment: I'll declare that the documentation is in error. I was pondering adding this macro, and the API changed forth and back several times (also after other people started contributing to the new Unicode API). The API is now what is implemented, and the

[issue18353] PyUnicode_WRITE_CHAR macro definition missing

2013-07-03 Thread Wolf Ihlenfeldt
New submission from Wolf Ihlenfeldt: Above macro is mentioned in the documentation (3.3.2), but does not appear in the header files. Associated function PyUnicode_WriteChar() is present and works as expected. -- assignee: docs@python components: Documentation, Unicode messages: 192247