summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* Revert r53672.Martin v. Löwis2007-02-181-5/+0
* Minor fix for currentframe (SF #1652788).Vinay Sajip2007-02-171-5/+5
* Patch #685268: Consider a package's __path__ in imputil.Martin v. Löwis2007-02-131-0/+4
* Patch 1463026: Support default namespace in XMLGenerator.Martin v. Löwis2007-02-122-17/+57
* backport: fix trace.py --ignore-dirSkip Montanaro2007-02-111-1/+1
* Bug #1600860: Search for shared python library in LIBDIR, notMartin v. Löwis2007-02-091-3/+12
* Bug #1653736: Complain about keyword arguments to time.isoformat.Martin v. Löwis2007-02-081-0/+5
* Fix docstring bugRaymond Hettinger2007-02-081-1/+1
* Do not let overflows in enumerate() and count() pass silently.Raymond Hettinger2007-02-071-2/+1
* Bug #1575169: operator.isSequenceType() now returns False for subclasses of d...Raymond Hettinger2007-02-071-0/+2
* Check for a common user error with defaultdict().Raymond Hettinger2007-02-071-3/+4
* SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclassesRaymond Hettinger2007-02-071-0/+8
* Applied patch 1124861.3.patch to solve bug #1124861: Automatically create pip...Peter Astrand2007-02-061-3/+25
* [Patch #783050 from Patrick Lynch] The emulation of forkpty() is incorrect;Georg Brandl2007-01-312-0/+17
* Patch #1638243: the compiler package is now able to correctly compileGeorg Brandl2007-01-273-1/+34
* Backport fix for bug #1643943.Brett Cannon2007-01-252-31/+34
* If you created a weakref in an object's __del__ method to itself it wouldBrett Cannon2007-01-232-1/+16
* 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
* [Bug #1633678] Improve pattern used for mbox 'From' lines; add a simple testAndrew M. Kuchling2007-01-222-3/+38
* Make comment match the codeAndrew M. Kuchling2007-01-221-1/+1
* Avoid O(N**2) bottleneck in _communicate_(). Fixes #1598181. Backport from re...Peter Astrand2007-01-211-3/+4
* 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
* SF# 1635892: Fix docs for betavariate's input parameters .Raymond Hettinger2007-01-191-1/+1
* Merged revisions 53402 via svnmerge fromThomas Heller2007-01-171-28/+50
* Fix for bug #1634343: allow specifying empty arguments on WindowsPeter Astrand2007-01-132-1/+3
* 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
* Change the ctypes version number to "1.0.2".Thomas Heller2007-01-101-1/+1
* Merged revisions 53316 via svnmerge fromThomas Heller2007-01-091-0/+28
* Fix zero-length corner case for iterating over a mutating deque.Raymond Hettinger2007-01-081-0/+6
* Backported changes from trunk:Vinay Sajip2007-01-081-3/+6
* Backported change from trunk:Vinay Sajip2007-01-081-2/+2
* Re-implemented fix for #1531862 once again, in a way that works with Python 2...Peter Astrand2007-01-071-2/+6
* [Bug #1622533] Make docstrings raw strings because they contain control chara...Andrew M. Kuchling2007-01-052-2/+2
* support linking the _bsddb extension module against BerkeleyDB 4.5Gregory P. Smith2007-01-052-3/+4
* Bug #1566280: Explicitly invoke threading._shutdown from Py_Main,Martin v. Löwis2007-01-041-5/+5
* Fix stability of heapq's nlargest() and nsmallest().Raymond Hettinger2007-01-042-18/+14
* For sets with cyclical reprs, emit '...' instead of recursing.Raymond Hettinger2006-12-291-0/+26
* Backport trunk checkin r51565:Thomas Wouters2006-12-291-0/+7
* SF bug #1623890, fix argument name in docstringNeal Norwitz2006-12-291-1/+1
* Patch #1504073: Fix tarfile.open() for mode "r" with a fileobj argument.Lars Gustäbel2006-12-272-0/+14
* Patch #1262036: Prevent TarFiles from being added to themselves underLars Gustäbel2006-12-232-27/+20
* Patch #1230446: tarfile.py: fix ExFileObject so that read() and tell()Lars Gustäbel2006-12-232-107/+164
* [Patch #827559 from Chris Gonnerman] Make SimpleHTTPServer redirect when a di...Andrew M. Kuchling2006-12-221-0/+6
* [Bug #737202; fix from Titus Brown] Make CGIHTTPServer work for scripts in su...Andrew M. Kuchling2006-12-221-0/+19
* Bug #1590891: random.randrange don't return correct value for big numberRaymond Hettinger2006-12-202-1/+9
* [Patch #1600491 from Jim Jewett] Describe how to build help files on WindowsAndrew M. Kuchling2006-12-191-0/+3
* [Patch #1617413 from Dug Song] Fix HTTP Basic authentication via HTTPSAndrew M. Kuchling2006-12-191-2/+2