- 22 Şub, 2008 3 kayıt (commit)
-
-
Georg Brandl yazdı
-
Nick Coghlan yazdı
Try to make command line error messages from runpy easier to understand (and suppress traceback cruft from the implicitly invoked runpy machinery)
-
Raymond Hettinger yazdı
-
- 21 Şub, 2008 10 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Eric Smith yazdı
-
Guido van Rossum yazdı
Move 2.5 news to Misc/HISTORY.
-
Raymond Hettinger yazdı
-
Thomas Heller yazdı
Replace 'raise Error, stuff' with 'raise Error(stuff)'.
-
Thomas Heller yazdı
top-level Python configure script. configure, fficonfig.h.in: regenerated.
-
Guido van Rossum yazdı
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 yazdı
-
Andrew M. Kuchling yazdı
This change doesn't make any difference to CPython, but is a necessary fix for Jython.
-
- 20 Şub, 2008 3 kayıt (commit)
-
-
Eric Smith yazdı
Now that PyOS_ascii_formatd supports the 'n' format, simplify the float formatting code to just call it.
-
Eric Smith yazdı
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 yazdı
-
- 19 Şub, 2008 2 kayıt (commit)
-
-
Eric Smith yazdı
-
Eric Smith yazdı
-
- 18 Şub, 2008 5 kayıt (commit)
-
-
Eric Smith yazdı
-
Kristján Valur Jónsson yazdı
Perform correct handling of stack overflow for windows: Catch the correct exception code and reset the overflow condition when handled.
-
Eric Smith yazdı
-
Facundo Batista yazdı
Thanks Anthony Lenton.
-
Facundo Batista yazdı
inspect.py. Thanks Javi Mansilla for patch review and corrections.
-
- 17 Şub, 2008 8 kayıt (commit)
-
-
Georg Brandl yazdı
-
Amaury Forgeot d'Arc yazdı
Only PCBuild (vs9) was really tested. Changes for older compilers were done manually.
-
Eric Smith yazdı
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).
-
Facundo Batista yazdı
a subclass of it. Thanks John Lenton.
-
Facundo Batista yazdı
issues regarding user/group and permissions. Fixes 1050828.
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Brett Cannon yazdı
Thanks to Christopher White from GHOP.
-
- 16 Şub, 2008 5 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
is still present in the containing structure.
-
Amaury Forgeot d'Arc yazdı
function can be called recursively. This was discussed in issue1020188. In python codebase, all occurrences of Py_[X]DECREF(xxx->yyy) are suspect, except when they appear in tp_new or tp_dealloc functions, or when the member cannot be of a user-defined class. Note that tp_init is not safe. I do have a (crashing) example for every changed line. Is it worth adding them to the test suite? Example: class SpecialStr(str): def __del__(self): s.close() import cStringIO s = cStringIO.StringIO(SpecialStr("text")) s.close() # Segfault
-
Georg Brandl yazdı
-
Raymond Hettinger yazdı
-
Amaury Forgeot d'Arc yazdı
Skip this test created by r60830.
-
- 15 Şub, 2008 4 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
They still remain fragile. For example, a call to assertEqual currently does not make any allocation (which surprised me at first). But this can change when gc.collect also deletes the numerous "zombie frames" attached to each function.
-
Kurt B. Kaiser yazdı
in the config dialog would cause non-Python files to be colored as if they were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat.
-
Kurt B. Kaiser yazdı
-
Amaury Forgeot d'Arc yazdı
-