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 ncoghlan
Recipients larry, nadeem.vawda, ncoghlan
Date 2014-01-25.15:12:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1390662760.28.0.808455899531.issue20184@psf.upfronthosting.co.za>
In-reply-to
Content
More comprehensive patch uploaded - all the non-type callables implemented in bltinmodule.c have been converted or classified with a reason for not being converted yet (see the new test in test_inspect.py for details, as well as the AC 3.4 and AC 3.5 comments in the module itself).

I also cleaned up the docstrings for the builtins I actually changed in the patch. There were a few that had never been properly updated for the Py3k transition.

There are still a couple of test failures with this version - the doctest tests get confused by the fact ord and chr now have a doctest in their docstrings, and test_gdb is definitely not in a happy place (that has always been temperamental, though).

I also just realised the Unicode character in the new ord and chr docstrings could pose a compatibility problem at the C compiler source encoding level, so we may have to reconsider that (even though I was rather happy to sneak that obscure Monty Python reference in there).
History
Date User Action Args
2014-01-25 15:12:40ncoghlansetrecipients: + ncoghlan, larry, nadeem.vawda
2014-01-25 15:12:40ncoghlansetmessageid: <1390662760.28.0.808455899531.issue20184@psf.upfronthosting.co.za>
2014-01-25 15:12:40ncoghlanlinkissue20184 messages
2014-01-25 15:12:32ncoghlancreate