[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

2013-08-26 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

2013-04-01 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: On 30.03.2013 13:09, Mark Lawrence wrote: > > Is it worth applying the patch given the complete rewrite of unicode for 3.3 > via PEP393? PEP 393 only changed the way Unicode is internally stored. The Unicode API is mostly unaffected by this change. --

[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

2013-03-30 Thread Mark Lawrence
Mark Lawrence added the comment: Is it worth applying the patch given the complete rewrite of unicode for 3.3 via PEP393? -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

2010-09-20 Thread Mark Lawrence
Changes by Mark Lawrence : -- assignee: georg.brandl -> d...@python nosy: +d...@python ___ Python tracker ___ ___ Python-bugs-list mail

[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

2010-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

2010-04-03 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

2009-06-08 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: The patch looks alright. I don't like the documentation for PyUnicode_FromFormatV, however. Here's my attempt to document it: .. cfunction:: PyObject* PyUnicode_FromFormatV(const char *format, va_list vargs) Equivalent to the function :cfunc:`PyUnicod

[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

2009-04-20 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +georg.brandl, lemburg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

2009-04-18 Thread Lorenz Quack
Lorenz Quack added the comment: Ok, here is my shot at a patch for at least some of the undocumented functions. Namely the following functions are being documented in the patch: PyUnicode_FromFormat PyUnicode_FromFormatV PyUnicode_FromString PyUnicode_FromStringAndSize PyUnicode_Parti

[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

2009-04-18 Thread Lorenz Quack
Lorenz Quack added the comment: In addition to the above mentioned functions I found these to be undocumented: PyUnicode_DecodeUTF7 PyUnicode_DecodeUTF7Stateful PyUnicode_EncodeDecimal PyUnicode_EncodeUTF7 PyUnicode_FromFormat PyUnicode_FromString PyUnicode_FromStringAndSize PyU

[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

2008-01-27 Thread Christian Heimes
Changes by Christian Heimes: -- priority: -> normal type: -> rfe __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscr

[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

2008-01-26 Thread Alexandre Vassalotti
New submission from Alexandre Vassalotti: I was wandering whether the pointer returned by PyUnicode_AsString needs to be freed after usage (It turned it doesn't since the result is cached). However, I found out that there isn't any documentation on docs.python.org about the PyUnicode_AsString and