summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* Fix the line to what is my guess at the original author's meaning.Armin Rigo2007-02-121-1/+1
* Patch 1463026: Support default namespace in XMLGenerator.Martin v. Löwis2007-02-122-17/+57
* 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
* Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;Kurt B. Kaiser2007-02-083-21/+103
* 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-081-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
* Handle AttributeError during calltip lookupKurt B. Kaiser2007-02-071-1/+1
* [ 1621265 ] Auto-completion list placementKurt B. Kaiser2007-02-072-6/+18
* narrow exception per [ 1540849 ] except too broadKurt B. Kaiser2007-02-061-1/+1
* Updated patch (CodeContext.061217.patch) toKurt B. Kaiser2007-02-061-53/+19
* Patch #1652681: create nonexistent files in append mode andLars Gustäbel2007-02-062-2/+63
* Applied patch 1124861.3.patch to solve bug #1124861: Automatically create pip...Peter Astrand2007-02-061-3/+25
* Clean up ModifiedInterpreter.runcode() structureKurt B. Kaiser2007-02-061-27/+29
* 1. Calltips now 'handle' tuples in the argument list (display '<tuple>' :)Kurt B. Kaiser2007-02-052-36/+48
* Add 'raw' support to configHandler. Patch 1650174 Tal Einat.Kurt B. Kaiser2007-02-052-12/+13
* We had several if statements checking the value of a fd. This is unsafe, sinc...Peter Astrand2007-02-021-15/+15
* No more raising of string exceptions!Brett Cannon2007-01-301-23/+39
* Whitespace normalization.Tim Peters2007-01-3021-131/+131
* Add a test for slicing an exception.Brett Cannon2007-01-291-0/+7
* Use the thread lock's context manager instead of a try/finally statement.Brett Cannon2007-01-281-4/+1
* Patch #1634778: add missing encoding aliases for iso8859_15 andGeorg Brandl2007-01-272-0/+7
* Patch #1638243: the compiler package is now able to correctly compileGeorg Brandl2007-01-273-1/+34
* Remove specific mention of my name and email address from modules. Not reallyBrett Cannon2007-01-253-13/+2
* Fix time.strptime's %U support. Basically rewrote the algorithm to be moreBrett Cannon2007-01-252-31/+34
* Port test_popen.py to unittest.Walter Dörwald2007-01-242-25/+29
* 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