| Commit message (Expand) | Author | Age | Files | Lines |
* | Updated rotating file handlers to use _open(). | Vinay Sajip | 2007-01-16 | 1 | -10/+6 |
|
|
* | Added WatchedFileHandler (based on SF patch #1598415) | Vinay Sajip | 2007-01-14 | 1 | -0/+49 |
|
|
* | Patch #1635058 by Mark Roberts: ensure that htonl and friends never accept or | Guido van Rossum | 2007-01-14 | 1 | -0/+14 |
|
|
* | Handle old-style instances more gracefully (display documentation on | Ka-Ping Yee | 2007-01-14 | 1 | -6/+13 |
|
|
* | Remove a dependency of this test on $COLUMNS. | Guido van Rossum | 2007-01-14 | 1 | -2/+10 |
|
|
* | Merged changes from standalone version 2.3.3. This should probably all be | Gerhard Häring | 2007-01-14 | 4 | -6/+56 |
|
|
* | Use defaults if sys.executable isn't set (e.g. on Jython). | Marc-André Lemburg | 2007-01-13 | 1 | -1/+4 |
|
|
* | Fix for bug #1634343: allow specifying empty arguments on Windows | Peter Astrand | 2007-01-13 | 2 | -1/+3 |
|
|
* | Add parameter sys_version to _sys_version(). | Marc-André Lemburg | 2007-01-13 | 1 | -16/+47 |
|
|
* | Fix grammar in docstrings | Neal Norwitz | 2007-01-13 | 1 | -2/+2 |
|
|
* | Bump version number and change copyright year. | Marc-André Lemburg | 2007-01-13 | 1 | -63/+259 |
|
|
* | Deprecate the sets module. | Brett Cannon | 2007-01-13 | 3 | -0/+10 |
|
|
* | patch #1610795: BSD version of ctypes.util.find_library, by Martin | Thomas Heller | 2007-01-12 | 1 | -28/+50 |
|
|
* | Avoid warnings in the test suite because ctypes.wintypes cannot be | Thomas Heller | 2007-01-12 | 1 | -1/+2 |
|
|
* | Correct the comments: the code is right. | Thomas Heller | 2007-01-11 | 1 | -2/+2 |
|
|
* | Fixes for 64-bit Windows: In ctypes.wintypes, correct the definitions | Thomas Heller | 2007-01-11 | 2 | -5/+30 |
|
|
* | SF #1486663 -- Allow keyword args in subclasses of set() and frozenset(). | Raymond Hettinger | 2007-01-11 | 1 | -0/+11 |
|
|
* | - idle: Honor the "Cancel" action in the save dialog (Debian bug #299092). | Matthias Klose | 2007-01-11 | 1 | -1/+1 |
|
|
* | Fix the signature of log_error(). (A subclass that did the right thing | Guido van Rossum | 2007-01-10 | 1 | -2/+2 |
|
|
* | Change the ctypes version number to "1.1.0". | Thomas Heller | 2007-01-10 | 1 | -1/+1 |
|
|
* | Verify the sizes of the basic ctypes data types against the struct | Thomas Heller | 2007-01-09 | 1 | -0/+28 |
|
|
* | Added a docstring | Vinay Sajip | 2007-01-09 | 1 | -0/+4 |
|
|
* | Bug #1627575: Added _open() method to FileHandler which can be used to reopen... | Vinay Sajip | 2007-01-09 | 1 | -9/+14 |
|
|
* | Bare except clause removed from LogRecord.__init__. Now, only ValueError, Typ... | Vinay Sajip | 2007-01-08 | 1 | -3/+3 |
|
|
* | Bare except clause removed from SMTPHandler.emit(). Now, only ImportError is ... | Vinay Sajip | 2007-01-08 | 1 | -2/+2 |
|
|
* | Fix zero-length corner case for iterating over a mutating deque. | Raymond Hettinger | 2007-01-08 | 1 | -0/+6 |
|
|
* | Avoid O(N**2) bottleneck in _communicate_(). Fixes #1598181. | Peter Astrand | 2007-01-07 | 1 | -3/+4 |
|
|
* | Re-implemented fix for #1531862 once again, in a way that works with Python 2... | Peter Astrand | 2007-01-07 | 1 | -2/+6 |
|
|
* | [Patch #1520904] Fix bsddb tests to write to the temp directory instead of th... | Andrew M. Kuchling | 2007-01-05 | 11 | -14/+17 |
|
|
* | [Bug #1622533] Make docstrings raw strings because they contain control chara... | Andrew M. Kuchling | 2007-01-05 | 2 | -2/+2 |
|
|
* | Support linking of the bsddb module against BerkeleyDB 4.5.x | Gregory P. Smith | 2007-01-05 | 2 | -3/+4 |
|
|
* | Bug #1566280: Explicitly invoke threading._shutdown from Py_Main, | Martin v. Löwis | 2007-01-04 | 1 | -5/+5 |
|
|
* | Fix stability of heapq's nlargest() and nsmallest(). | Raymond Hettinger | 2007-01-04 | 2 | -18/+14 |
|
|
* | Add EnvironmentVarGuard to test.test_support. Provides a context manager to | Brett Cannon | 2007-01-04 | 1 | -1/+33 |
|
|
* | For sets with cyclical reprs, emit an ellipsis instead of infinitely recursing. | Raymond Hettinger | 2006-12-30 | 1 | -0/+26 |
|
|
* | SF bug #1623890, fix argument name in docstring | Neal Norwitz | 2006-12-29 | 1 | -1/+1 |
|
|
* | Patch #1504073: Fix tarfile.open() for mode "r" with a fileobj argument. | Lars Gustäbel | 2006-12-27 | 2 | -0/+15 |
|
|
* | [Rest of patch #1182394] Add ._current() method so that we can use the writte... | Andrew M. Kuchling | 2006-12-27 | 1 | -4/+12 |
|
|
* | [Part of patch #1182394] Move the HMAC blocksize to be a class-level | Andrew M. Kuchling | 2006-12-27 | 1 | -3/+4 |
|
|
* | Patch #1262036: Prevent TarFiles from being added to themselves under | Lars Gustäbel | 2006-12-23 | 2 | -27/+20 |
|
|
* | Patch #1230446: tarfile.py: fix ExFileObject so that read() and tell() | Lars Gustäbel | 2006-12-23 | 2 | -107/+164 |
|
|
* | Frak; this test also fails | Andrew M. Kuchling | 2006-12-22 | 1 | -7/+7 |
|
|
* | Darn; this test works when you run test_pty.py directly, but fails when regrt... | Andrew M. Kuchling | 2006-12-22 | 1 | -5/+5 |
|
|
* | [Patch #827559 from Chris Gonnerman] Make SimpleHTTPServer redirect when a di... | Andrew M. Kuchling | 2006-12-22 | 1 | -0/+6 |
|
|
* | [Patch #783050 from Patrick Lynch] The emulation of forkpty() is incorrect; | Andrew M. Kuchling | 2006-12-22 | 2 | -1/+18 |
|
|
* | [Bug #776202] Apply Walter Doerwald's patch to use text mode for encoded files | Andrew M. Kuchling | 2006-12-22 | 1 | -7/+7 |
|
|
* | [Bug #802128 continued] Modify mode depending on the process umask. | Andrew M. Kuchling | 2006-12-22 | 2 | -6/+21 |
|
|
* | [Bug #802128] Make the mode argument of dumbdbm actually work the way it's | Andrew M. Kuchling | 2006-12-22 | 2 | -3/+23 |
|
|
* | [Bug #737202; fix from Titus Brown] Make CGIHTTPServer work for scripts in su... | Andrew M. Kuchling | 2006-12-22 | 1 | -0/+19 |
|
|
* | [Apply length-checking.diff from bug #1599254] | Andrew M. Kuchling | 2006-12-20 | 1 | -2/+23 |
|
|