- 05 Ock, 2011 3 kayıt (commit)
-
-
Victor Stinner yazdı
PyUnicode_FromFormat() and PyErr_Format() allocates a buffer of the needed size, it is no more a fixed-buffer of 500 bytes.
-
R. David Murray yazdı
There's still a bug here (the encode call shouldn't use the 'errors' paramter), but I'll fix that later.
-
Victor Stinner yazdı
Instead of _testcapi.format_unicode() because it has a limited API: it requires exactly one argument of type unicode.
-
- 04 Ock, 2011 22 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Antoine Pitrou yazdı
will fix intermittent failures on some buildbots (issue #8458).
-
Gregory P. Smith yazdı
deletes its _block attribute, deal with that. This prevents an uncaught exception in a thread during test_thread. This refactors a bit to better match what I did in the r87727 backport to 2.7.
-
Georg Brandl yazdı
-
Alexander Belopolsky yazdı
-
Alexander Belopolsky yazdı
-
Alexander Belopolsky yazdı
and ctime functions. The year range for time.asctime is now 1900 through maxint. The range for time.ctime is the same as for time.localtime. The string produced by these functions is longer than 24 characters when year is greater than 9999.
-
Vinay Sajip yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Return msgbug on error is enough.
-
Victor Stinner yazdı
Don't need to handle unknown destructor anymore.
-
Victor Stinner yazdı
raising a ValueError, to fix repr().
-
Victor Stinner yazdı
the input buffer length doesn't fit into an unsigned int (length bigger than 2^32-1 bytes).
-
Victor Stinner yazdı
doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int (length bigger than 2^31-1).
-
Victor Stinner yazdı
length to 2^31-1 on Windows.
-
Antoine Pitrou yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Antoine Pitrou yazdı
Python 2.2.
-
- 03 Ock, 2011 15 kayıt (commit)
-
-
Victor Stinner yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Gregory P. Smith yazdı
-
Gregory P. Smith yazdı
needed to be reinitialized after fork(). Adds tests to confirm that they are and that a potential deadlock and crasher bug are fixed (platform dependant).
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
in whole runs and enabled selectively using `--header` when running an explicit list of tests. Original patch by Collin Winter.
-
Michael Foord yazdı
-
Antoine Pitrou yazdı
the configure script but use $GREP instead. Patch by Fabian Groffen.
-
Antoine Pitrou yazdı
file descriptors (0, 1, 2) are closed in the parent process. Initial patch by Ross Lagerwall.
-
Éric Araujo yazdı
-
Michael Foord yazdı
Changed unittestgui to show number of discovered tests in the status bar.
-
Victor Stinner yazdı
-