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 taleinat
Recipients larry, taleinat
Date 2014-01-22.01:29:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1390354206.08.0.647338642845.issue20180@psf.upfronthosting.co.za>
In-reply-to
Content
Attaching a new patch for complete conversion of Objects/unicodeobject.c.
This is to replace the previous patch for this file.

This new patch also converts all other possible unicode methods,
including those not using PyArg_* functions. This includes various
methods with no arguments or with one PyObject* argument.

Unicode methods still not converted, probably impossible to convert:
1) The various find methods (index, count, startswith, rfind, etc.),
   because they use a special function
   'stringlib_parse_args_finds_unicode' to parse their arguments
2) format and format_map, since they are defined elsewhere
3) _decimal2ascii, since it is just for debugging
History
Date User Action Args
2014-01-22 01:30:06taleinatsetrecipients: + taleinat, larry
2014-01-22 01:30:06taleinatsetmessageid: <1390354206.08.0.647338642845.issue20180@psf.upfronthosting.co.za>
2014-01-22 01:30:05taleinatlinkissue20180 messages
2014-01-22 01:30:05taleinatcreate