summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Fix crasher for when an object's __del__ creates a new weakref to itself.Brett Cannon2007-01-232-1/+16
* Patch #1507247: tarfile.py: use current umask for intermediateLars Gustäbel2007-01-231-13/+1
* Bug #1627316: handle error in condition/ignore pdb commands more gracefully.Georg Brandl2007-01-221-2/+12
* Bug #1249573: fix rfc822.parsedate not accepting a certain date formatGeorg Brandl2007-01-221-0/+5
* Make comment match the codeAndrew M. Kuchling2007-01-221-1/+1
* Improve pattern used for mbox 'From' lines; add a simple testAndrew M. Kuchling2007-01-222-3/+38
* Use new email module names (#1637162, #1637159, #1637157).Georg Brandl2007-01-226-28/+28
* Patch #1627441: close sockets properly in urllib2.Georg Brandl2007-01-214-6/+61
* Bug #1486663: don't reject keyword arguments for subclasses of builtinGeorg Brandl2007-01-214-1/+43
* Patch #1610575: Add support for _Bool to struct.Martin v. Löwis2007-01-211-7/+61
* Port test_new.py to unittest.Walter Dörwald2007-01-202-190/+162
* resource.RUSAGE_BOTH might not exist.Walter Dörwald2007-01-201-1/+1
* Add argument tests an calls of resource.getrusage().Walter Dörwald2007-01-201-0/+18
* Port test_resource.py to unittest.Walter Dörwald2007-01-202-58/+78
* SF# 1635892: Fix docs for betavariate's input parameters .Raymond Hettinger2007-01-191-1/+1
* This test doesn't pass on Windows. The cause seems to be that chmodNeal Norwitz2007-01-181-2/+8
* Try reverting part of r53145 that seems to cause the Windows buildbots to fai...Neal Norwitz2007-01-181-2/+2
* Fixed ntpath.expandvars to not replace references to non-existingSjoerd Mullender2007-01-163-2/+30
* Updated rotating file handlers to use _open().Vinay Sajip2007-01-161-10/+6
* Added WatchedFileHandler (based on SF patch #1598415)Vinay Sajip2007-01-141-0/+49
* Patch #1635058 by Mark Roberts: ensure that htonl and friends never accept orGuido van Rossum2007-01-141-0/+14
* Handle old-style instances more gracefully (display documentation onKa-Ping Yee2007-01-141-6/+13
* Remove a dependency of this test on $COLUMNS.Guido van Rossum2007-01-141-2/+10
* Merged changes from standalone version 2.3.3. This should probably all beGerhard Häring2007-01-144-6/+56
* Use defaults if sys.executable isn't set (e.g. on Jython).Marc-André Lemburg2007-01-131-1/+4
* Fix for bug #1634343: allow specifying empty arguments on WindowsPeter Astrand2007-01-132-1/+3
* Add parameter sys_version to _sys_version().Marc-André Lemburg2007-01-131-16/+47
* Fix grammar in docstringsNeal Norwitz2007-01-131-2/+2
* Bump version number and change copyright year.Marc-André Lemburg2007-01-131-63/+259
* Deprecate the sets module.Brett Cannon2007-01-133-0/+10
* patch #1610795: BSD version of ctypes.util.find_library, by MartinThomas Heller2007-01-121-28/+50
* Avoid warnings in the test suite because ctypes.wintypes cannot beThomas Heller2007-01-121-1/+2
* Correct the comments: the code is right.Thomas Heller2007-01-111-2/+2
* Fixes for 64-bit Windows: In ctypes.wintypes, correct the definitionsThomas Heller2007-01-112-5/+30
* SF #1486663 -- Allow keyword args in subclasses of set() and frozenset().Raymond Hettinger2007-01-111-0/+11
* - idle: Honor the "Cancel" action in the save dialog (Debian bug #299092).Matthias Klose2007-01-111-1/+1
* Fix the signature of log_error(). (A subclass that did the right thingGuido van Rossum2007-01-101-2/+2
* Change the ctypes version number to "1.1.0".Thomas Heller2007-01-101-1/+1
* Verify the sizes of the basic ctypes data types against the structThomas Heller2007-01-091-0/+28
* Added a docstringVinay Sajip2007-01-091-0/+4
* Bug #1627575: Added _open() method to FileHandler which can be used to reopen...Vinay Sajip2007-01-091-9/+14
* Bare except clause removed from LogRecord.__init__. Now, only ValueError, Typ...Vinay Sajip2007-01-081-3/+3
* Bare except clause removed from SMTPHandler.emit(). Now, only ImportError is ...Vinay Sajip2007-01-081-2/+2
* Fix zero-length corner case for iterating over a mutating deque.Raymond Hettinger2007-01-081-0/+6
* Avoid O(N**2) bottleneck in _communicate_(). Fixes #1598181.Peter Astrand2007-01-071-3/+4
* Re-implemented fix for #1531862 once again, in a way that works with Python 2...Peter Astrand2007-01-071-2/+6
* [Patch #1520904] Fix bsddb tests to write to the temp directory instead of th...Andrew M. Kuchling2007-01-0511-14/+17
* [Bug #1622533] Make docstrings raw strings because they contain control chara...Andrew M. Kuchling2007-01-052-2/+2
* Support linking of the bsddb module against BerkeleyDB 4.5.xGregory P. Smith2007-01-052-3/+4
* Bug #1566280: Explicitly invoke threading._shutdown from Py_Main,Martin v. Löwis2007-01-041-5/+5