| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Minor change in int() docstring for proper spacing. | Gustavo Niemeyer | 2007-01-10 | 1 | -1/+1 |
| | | |||||
| * | Mention in the int() docstring that a base zero has meaning, as | Gustavo Niemeyer | 2007-01-10 | 1 | -2/+3 |
| | | | | | stated in http://docs.python.org/lib/built-in-funcs.html as well. | ||||
| * | Verify the sizes of the basic ctypes data types against the struct | Thomas Heller | 2007-01-09 | 1 | -0/+28 |
| | | | | | | | module. Will backport to release25-maint. | ||||
| * | Added a docstring | Vinay Sajip | 2007-01-09 | 1 | -0/+4 |
| | | |||||
| * | Added entry about addition of _open() method to logging.FileHandler. | Vinay Sajip | 2007-01-09 | 1 | -0/+4 |
| | | |||||
| * | Bug #1627575: Added _open() method to FileHandler which can be used to ↵ | Vinay Sajip | 2007-01-09 | 1 | -9/+14 |
| | | | | | reopen files. The FileHandler instance now saves the encoding (which can be None) in an attribute called "encoding". | ||||
| * | Added entries about removal of some bare except clauses from logging. | Vinay Sajip | 2007-01-08 | 1 | -0/+9 |
| | | |||||
| * | Bare except clause removed from LogRecord.__init__. Now, only ValueError, ↵ | Vinay Sajip | 2007-01-08 | 1 | -3/+3 |
| | | | | | | | TypeError and AttributeError are trapped. (SF #411881) | ||||
| * | Bare except clause removed from SMTPHandler.emit(). Now, only ImportError is ↵ | Vinay Sajip | 2007-01-08 | 1 | -2/+2 |
| | | | | | | | | trapped. Bare except clause removed from SocketHandler.createSocket(). Now, only socket.error is trapped. (SF #411881) | ||||
| * | Fix zero-length corner case for iterating over a mutating deque. | Raymond Hettinger | 2007-01-08 | 2 | -3/+8 |
| | | |||||
| * | 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 ↵ | Peter Astrand | 2007-01-07 | 1 | -2/+6 |
| | | | | | 2.2. Fixes bug #1603424. | ||||
| * | Add Josiah to SF for maintaining asyncore/asynchat | Neal Norwitz | 2007-01-06 | 1 | -0/+3 |
| | | |||||
| * | update to (c) years to include 2007 | Anthony Baxter | 2007-01-06 | 7 | -11/+12 |
| | | |||||
| * | SF# 1409443: Expand comment to cover the interaction between f->f_lasti and ↵ | Raymond Hettinger | 2007-01-06 | 1 | -1/+10 |
| | | | | | the PREDICT macros. | ||||
| * | Silence a warning from gcc 4.0.1 by specifying a function's parameter list is | Brett Cannon | 2007-01-05 | 1 | -1/+1 |
| | | | | | 'void' instead of just a set of empty parentheses. | ||||
| * | [Patch #1520904] Fix bsddb tests to write to the temp directory instead of ↵ | Andrew M. Kuchling | 2007-01-05 | 11 | -14/+17 |
| | | | | | the Lib/bsddb/test directory | ||||
| * | [Bug #1622533] Make docstrings raw strings because they contain control ↵ | Andrew M. Kuchling | 2007-01-05 | 2 | -2/+2 |
| | | | | | characters (\0, \1) | ||||
| * | Add Collin Winter for access to update PEP 3107 | Neal Norwitz | 2007-01-05 | 1 | -0/+3 |
| | | |||||
| * | typo fix | Gregory P. Smith | 2007-01-05 | 1 | -1/+1 |
| | | |||||
| * | Prevent crash on shutdown which can occur if we are finalizing | Neal Norwitz | 2007-01-05 | 2 | -1/+5 |
| | | | | | | | | and the module dict has been cleared already and some object raises a warning (like in a __del__). Will backport. | ||||
| * | bump module version to match supported berkeleydb version | Gregory P. Smith | 2007-01-05 | 1 | -1/+1 |
| | | |||||
| * | Support linking of the bsddb module against BerkeleyDB 4.5.x | Gregory P. Smith | 2007-01-05 | 6 | -7/+18 |
| | | | | | (will backport to 2.5) | ||||
| * | Bug #1566280: Explicitly invoke threading._shutdown from Py_Main, | Martin v. Löwis | 2007-01-04 | 3 | -5/+37 |
| | | | | | | to avoid relying on atexit. Will backport to 2.5. | ||||
| * | Fix stability of heapq's nlargest() and nsmallest(). | Raymond Hettinger | 2007-01-04 | 2 | -18/+14 |
| | | |||||
| * | SF #1627373, fix typo in CarbonEvt. | Neal Norwitz | 2007-01-04 | 1 | -1/+1 |
| | | |||||
| * | Add EnvironmentVarGuard to test.test_support. Provides a context manager to | Brett Cannon | 2007-01-04 | 3 | -1/+55 |
| | | | | | temporarily set or unset environment variables. | ||||
| * | For sets with cyclical reprs, emit an ellipsis instead of infinitely recursing. | Raymond Hettinger | 2006-12-30 | 2 | -4/+50 |
| | | |||||
| * | SF bug #1623890, fix argument name in docstring | Neal Norwitz | 2006-12-29 | 1 | -1/+1 |
| | | |||||
| * | Remove a stray (old) macro name left around (I guess) | Neal Norwitz | 2006-12-28 | 1 | -2/+0 |
| | | |||||
| * | Patch #1504073: Fix tarfile.open() for mode "r" with a fileobj argument. | Lars Gustäbel | 2006-12-27 | 3 | -0/+17 |
| | | | | | Will backport to 2.5. | ||||
| * | [Rest of patch #1182394] Add ._current() method so that we can use the ↵ | Andrew M. Kuchling | 2006-12-27 | 3 | -4/+15 |
| | | | | | written-in-C .hexdigest() method | ||||
| * | [Part of patch #1182394] Move the HMAC blocksize to be a class-level | Andrew M. Kuchling | 2006-12-27 | 1 | -3/+4 |
| | | | | | | constant; this allows changing it in a subclass. To accommodate this, copy() now uses __class__. Also add some text to a comment. | ||||
| * | Patch #1262036: Prevent TarFiles from being added to themselves under | Lars Gustäbel | 2006-12-23 | 3 | -27/+23 |
| | | | | | | | certain conditions. Will backport to 2.5. | ||||
| * | Patch #1230446: tarfile.py: fix ExFileObject so that read() and tell() | Lars Gustäbel | 2006-12-23 | 3 | -107/+167 |
| | | | | | | | work correctly together with readline(). Will backport to 2.5. | ||||
| * | 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 ↵ | Andrew M. Kuchling | 2006-12-22 | 1 | -5/+5 |
| | | | | | regrtest runs it (the os.read() raises os.error). I can't figure out the cause, so am commenting out the test. | ||||
| * | [Patch #827559 from Chris Gonnerman] Make SimpleHTTPServer redirect when a ↵ | Andrew M. Kuchling | 2006-12-22 | 1 | -0/+6 |
| | | | | | directory URL is missing the trailing slash; this lets relative links work. | ||||
| * | [Patch #783050 from Patrick Lynch] The emulation of forkpty() is incorrect; | Andrew M. Kuchling | 2006-12-22 | 2 | -1/+18 |
| | | | | | | | | | | | the master should close the slave fd. Added a test to test_pty.py that reads from the master_fd after doing a pty.fork(); without the fix it hangs forever instead of raising an exception. (<crossing fingers for the buildbots>) 2.5 backport candidate. | ||||
| * | [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 |
| | | | | | | | Is there really no other way to read the umask than to set it? Hope this works on Windows... | ||||
| * | [Bug #802128] Make the mode argument of dumbdbm actually work the way it's | Andrew M. Kuchling | 2006-12-22 | 2 | -3/+23 |
| | | | | | | | | described, and add a test for it. 2.5 bugfix candidate, maybe; arguably this patch changes the API of dumbdbm and shouldn't be added in a point-release. | ||||
| * | [Bug #737202; fix from Titus Brown] Make CGIHTTPServer work for scripts in ↵ | Andrew M. Kuchling | 2006-12-22 | 1 | -0/+19 |
| | | | | | sub-directories | ||||
| * | Typo fix | Andrew M. Kuchling | 2006-12-22 | 1 | -1/+1 |
| | | |||||
| * | Fix wrong markup of an argument in a method signature. | Thomas Heller | 2006-12-21 | 1 | -1/+1 |
| | | | | | Will backport. | ||||
| * | Fix typo. | Walter Dörwald | 2006-12-21 | 1 | -1/+1 |
| | | |||||
| * | Mention the os.SEEK_* constants | Andrew M. Kuchling | 2006-12-21 | 3 | -9/+13 |
| | | |||||
| * | Lars asked for permission on on python-dev for work on tarfile.py | Neal Norwitz | 2006-12-21 | 1 | -0/+3 |
| | | |||||
| * | [Bug #1619680] in_dll() arguments are documented in the wrong order | Andrew M. Kuchling | 2006-12-20 | 1 | -1/+1 |
| | | |||||
| * | Some other built-in functions are described with 'sequence' arguments | Andrew M. Kuchling | 2006-12-20 | 1 | -38/+38 |
| | | | | | | | that should really be 'iterable'; this commit changes them. Did I miss any? Did I introduce any errors? | ||||
