- 05 Jan, 2011 21 commits
-
-
Antoine Pitrou authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Georg Brandl authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
socket is now always non-blocking, regardless of the operating system.
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Antoine Pitrou authored
Patch by Jean-Paul Calderone and Sandro Tosi.
-
Antoine Pitrou authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
Popen.communicate() avoids deadlocks and close the pipes when done. This commit fixes a ResourceWarning(unclosed pipe).
-
Victor Stinner authored
Fix a ResourceWarning(unclosed file).
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
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 authored
There's still a bug here (the encode call shouldn't use the 'errors' paramter), but I'll fix that later.
-
Victor Stinner authored
Instead of _testcapi.format_unicode() because it has a limited API: it requires exactly one argument of type unicode.
-
- 04 Jan, 2011 19 commits
-
-
Antoine Pitrou authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Antoine Pitrou authored
will fix intermittent failures on some buildbots (issue #8458).
-
Gregory P. Smith authored
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 authored
-
Alexander Belopolsky authored
-
Alexander Belopolsky authored
-
Alexander Belopolsky authored
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 authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
Return msgbug on error is enough.
-
Victor Stinner authored
Don't need to handle unknown destructor anymore.
-
Victor Stinner authored
raising a ValueError, to fix repr().
-
Victor Stinner authored
the input buffer length doesn't fit into an unsigned int (length bigger than 2^32-1 bytes).
-
Victor Stinner authored
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 authored
length to 2^31-1 on Windows.
-
Antoine Pitrou authored
-