- 23 Feb, 2008 9 commits
-
-
Georg Brandl authored
-
Christian Heimes authored
with some help from Georg
-
Facundo Batista authored
DEFAULT section any more, because it duplicated sections with the rest of the machinery. Thanks Tim Lesher and Manuel Kaufmann.
-
Facundo Batista authored
Thanks Alan McIntyre.
-
Facundo Batista authored
a test for this (and because of this test you'll see in stderr a message that parser.c sends before raising MemoryError). Thanks Ralf Schmitt.
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Eric Smith authored
-
Raymond Hettinger authored
* Fix-up issues pointed-out by Neal Norwitz. * Add extensive comments. * The lz->result variable is now a tuple instead of a list. * Use fast macro getitem/setitem calls so most code is in-line. * Re-use the result tuple if available (modify in-place instead of copy).
-
- 22 Feb, 2008 8 commits
-
-
Raymond Hettinger authored
-
Eric Smith authored
-
Eric Smith authored
Added bin() builtin. I'm going to check in the tests in a seperate checkin, because the builtin doesn't need to be ported to py3k, but the tests are missing in py3k and need to be merged there.
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Nick Coghlan authored
Try to make command line error messages from runpy easier to understand (and suppress traceback cruft from the implicitly invoked runpy machinery)
-
Raymond Hettinger authored
-
- 21 Feb, 2008 10 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
-
Eric Smith authored
-
Guido van Rossum authored
Move 2.5 news to Misc/HISTORY.
-
Raymond Hettinger authored
-
Thomas Heller authored
Replace 'raise Error, stuff' with 'raise Error(stuff)'.
-
Thomas Heller authored
top-level Python configure script. configure, fficonfig.h.in: regenerated.
-
Guido van Rossum authored
callable() from copy_reg.py, so the interpreter now starts up without warnings when '-3' is given. More work like this needs to be done in the rest of the stdlib.
-
Guido van Rossum authored
-
Andrew M. Kuchling authored
This change doesn't make any difference to CPython, but is a necessary fix for Jython.
-
- 20 Feb, 2008 3 commits
-
-
Eric Smith authored
Now that PyOS_ascii_formatd supports the 'n' format, simplify the float formatting code to just call it.
-
Eric Smith authored
Trim leading zeros from a floating point exponent, per C99. See issue 1600. As far as I know, this only affects Windows. Add float type 'n' to PyOS_ascii_formatd (see PEP 3101 for 'n' description).
-
Georg Brandl authored
-
- 19 Feb, 2008 2 commits
-
-
Eric Smith authored
-
Eric Smith authored
-
- 18 Feb, 2008 5 commits
-
-
Eric Smith authored
-
Kristján Valur Jónsson authored
Perform correct handling of stack overflow for windows: Catch the correct exception code and reset the overflow condition when handled.
-
Eric Smith authored
-
Facundo Batista authored
Thanks Anthony Lenton.
-
Facundo Batista authored
inspect.py. Thanks Javi Mansilla for patch review and corrections.
-
- 17 Feb, 2008 3 commits
-
-
Georg Brandl authored
-
Amaury Forgeot d'Arc authored
Only PCBuild (vs9) was really tested. Changes for older compilers were done manually.
-
Eric Smith authored
Highlights: - Adding PyObject_Format. - Adding string.Format class. - Adding __format__ for str, unicode, int, long, float, datetime. - Adding builtin format. - Adding ''.format and u''.format. - str/unicode fixups for formatters. The files in Objects/stringlib that implement PEP 3101 (stringdefs.h, unicodedefs.h, formatter.h, string_format.h) are identical in trunk and py3k. Any changes from here on should be made to trunk, and changes will propogate to py3k).
-