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 eric.smith
Recipients eric.smith, georg.brandl
Date 2009-10-19.00:59:57
SpamBayes Score 1.8923582e-05
Marked as misclassified No
Message-id <1255914000.67.0.0340372687957.issue7168@psf.upfronthosting.co.za>
In-reply-to
Content
These functions are unsafe and I'd like to delete them. They've already
been deleted in py3k, per PEP 3100. They are no longer used internally
to the interpreter.

They should be documented as deprecated and as unsafe. They write to a
char* parameter, but don't take a length, so they could overwrite the
passed-in buffer.

There's some argument to be made that we should also document
PyFloat_AsStringEx, which is also deprecated and unsafe. But it is not
in a .h file in 2.4, 2.5, or 2.6, so I'd like to just delete it for 2.7.
History
Date User Action Args
2009-10-19 01:00:00eric.smithsetrecipients: + eric.smith, georg.brandl
2009-10-19 01:00:00eric.smithsetmessageid: <1255914000.67.0.0340372687957.issue7168@psf.upfronthosting.co.za>
2009-10-19 00:59:58eric.smithlinkissue7168 messages
2009-10-19 00:59:57eric.smithcreate