summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearraysEli Bendersky2011-03-041-1/+1
|
* Issue 9795: adds context manager protocol to nntplib.NNTP class so that it ↵Giampaolo Rodolà2011-03-032-0/+35
| | | | can used with the 'with' statement.
* Issue #10516: added copy() and clear() methods to bytearrays as wellEli Bendersky2011-03-031-0/+33
|
* #11306: Treat EROFS like EACCES when making a 'file is read-only' decisionR. David Murray2011-03-031-3/+3
|
* fix attribute errorGiampaolo Rodolà2011-03-031-1/+2
|
* Issue #11377: Fix quoting on Windows in test_platformVictor Stinner2011-03-031-2/+11
|
* Fix issue 11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN ↵Giampaolo Rodolà2011-03-031-4/+5
| | | | errors on accept(), recv() and send().
* Issue #11377: Deprecate platform.popen() and reimplement it with os.popen().Victor Stinner2011-03-032-82/+20
|
* Issue #8513: On UNIX, subprocess supports bytes command string.Victor Stinner2011-03-032-1/+6
|
* Update compiler recursion crasher to more reliably blow the stack and add a ↵Nick Coghlan2011-03-031-2/+10
| | | | tracker issue for it
* add tests for xml.pulldom #9373Benjamin Peterson2011-03-022-38/+346
| | | | Thanks to Mark Smith for the patch.
* Remove last use of distutils.sysconfig from the stdlib (#11364).Éric Araujo2011-03-021-2/+1
| | | | | Apart from distutils itself, the stdlib has now officially switched to the new top-level sysconfig module. Patch greenlighted by Ned Deily.
* assertEquals is deprecatedAntoine Pitrou2011-03-021-1/+1
|
* Issue #10831: PyUnicode_FromFormat() supports %li, %lli and %zi formatsVictor Stinner2011-03-021-11/+28
|
* Issue #10829: Refactor PyUnicode_FromFormat()Victor Stinner2011-03-011-0/+19
| | | | | * Use the same function to parse the format string in the 3 steps * Fix crashs on invalid format strings
* Issue #10911: Add tests on CGI with non-ASCII charactersVictor Stinner2011-03-011-24/+51
| | | | Patch written by Pierre Quentel
* Followup to issue #11140 and r88682: also patch _dummy_thread.Antoine Pitrou2011-03-012-7/+3
| | | | Patch by Aymeric Augustin.
* Issue #11246: Fix PyUnicode_FromFormat("%V")Victor Stinner2011-03-011-0/+13
| | | | | Decode the byte string from UTF-8 (with replace error handler) instead of ISO-8859-1 (in strict mode). Patch written by Ray Allen.
* Endly, fix UnboundLocalError in telnetlibAntoine Pitrou2011-03-011-1/+2
|
* Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall.Antoine Pitrou2011-02-281-0/+20
|
* Issue #11140: Lock.release() now raises a RuntimeError when attemptingAntoine Pitrou2011-02-281-0/+4
| | | | | to release an unacquired lock, as claimed in the threading documentation. The _thread.error exception is now an alias of RuntimeError.
* Issue 11348: skip os.setpriority() test if current nice level is >= 19.Giampaolo Rodolà2011-02-281-1/+7
|
* Fix issue 8594: adds a source_address parameter to ftplib module.Giampaolo Rodolà2011-02-282-6/+27
|
* Follow up to r88664: non-blocking connect-ex() can return EWOULDBLOCK under ↵Antoine Pitrou2011-02-271-1/+2
| | | | Windows
* Issue #11326: Add the missing connect_ex() implementation for SSL sockets,Antoine Pitrou2011-02-262-8/+65
| | | | and make it work for non-blocking connects.
* Merged revisions 88661 via svnmerge fromBenjamin Peterson2011-02-263-10/+14
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r88661 | benjamin.peterson | 2011-02-26 16:06:24 -0600 (Sat, 26 Feb 2011) | 6 lines fix refactoring on formfeed characters #11250 This is because text.splitlines() is not the same as list(StringIO.StringIO(text)). ........
* Make sendfile tests more robustAntoine Pitrou2011-02-261-1/+6
|
* Issue #11330: Updated tests for correct asctime handling.Vinay Sajip2011-02-262-3/+3
|
* Issue #11330: Added regression test.Vinay Sajip2011-02-261-0/+8
|
* Issue #9931: Fix hangs in GUI tests under Windows in certain conditions.Antoine Pitrou2011-02-261-0/+34
| | | | Patch by Hirokazu Yamamoto.
* Issue #11323: fix sendfile tests under 64-bit Solaris.Antoine Pitrou2011-02-261-9/+16
|
* Removed typo.Vinay Sajip2011-02-261-1/+1
|
* Issue #11330: asctime format bug fixed.Vinay Sajip2011-02-261-1/+4
|
* Revert r88639 (the optimization changes behaviour and breaks buildbots)Antoine Pitrou2011-02-262-18/+7
|
* Issue #11258: Speed up ctypes.util.find_library() under Linux a lot. PatchAntoine Pitrou2011-02-262-7/+18
| | | | by Jonas H.
* test_logging: Changed TimedRotatingFileHandler tests to use UTC time rather ↵Vinay Sajip2011-02-261-3/+3
| | | | than local time.
* Add __bool__ method. Add tests. Fix-up broken test.Raymond Hettinger2011-02-262-8/+17
|
* test_logging: diagnostic code changes.Vinay Sajip2011-02-261-0/+1
|
* Fix Issue10228 - Refleak run of test_dbm fails when several dbm modules are ↵Senthil Kumaran2011-02-261-1/+1
| | | | available (Patch by Ray.Allen)
* Issue #11297: Add collections.ChainMap()Raymond Hettinger2011-02-264-7/+7
|
* Fix AttributeError.Antoine Pitrou2011-02-261-1/+1
|
* Issue #10755: Add the posix.fdlistdir() function. Patch by Ross Lagerwall.Antoine Pitrou2011-02-251-0/+12
|
* Issue #4761: Add the *at() family of functions (openat(), etc.) to the posixAntoine Pitrou2011-02-251-0/+192
| | | | module. Patch by Ross Lagerwall.
* Issue #7322: Trying to read from a socket's file-like object after a timeoutAntoine Pitrou2011-02-252-0/+23
| | | | | occurred now raises an error instead of silently losing data. Patch by Ross Lagerwall.
* test_logging: Added more diagnostics for buildbot failures.Vinay Sajip2011-02-251-2/+31
|
* Issue 11291: poplib suppresses errors on QUIT.Giampaolo Rodolà2011-02-252-9/+23
|
* Issue 11177: asyncore's create_socket() arguments can now be omitted.Giampaolo Rodolà2011-02-252-11/+11
|
* Issue #6064: Add a `daemon` keyword argument to the threading.ThreadAntoine Pitrou2011-02-254-16/+33
| | | | | | and multiprocessing.Process constructors in order to override the default behaviour of inheriting the daemonic property from the current thread/process.
* (issue 11323) - attempt to fix solaris buildbot failure for os.sendfile(). ↵Giampaolo Rodolà2011-02-251-2/+3
| | | | Also fixed an AttributeError in get/set priority tests.
* Issue #10956: Buffered I/O classes retry reading or writing after a signalAntoine Pitrou2011-02-252-5/+121
| | | | has arrived and the handler returned successfully.