summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Provide an example of defaultdict with non-zero constant factory function.Raymond Hettinger2007-02-191-8/+12
* Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash().Raymond Hettinger2007-02-194-7/+73
* Revert r53672.Martin v. Löwis2007-02-181-5/+0
* Revert r53672, just fix signature of time_isoformat instead.Martin v. Löwis2007-02-182-3/+6
* Minor fix for currentframe (SF #1652788).Vinay Sajip2007-02-171-5/+5
* Add missing \versionadded.Georg Brandl2007-02-151-0/+4
* Patch #1494140: Add documentation for the new struct.Struct object.Georg Brandl2007-02-152-0/+57
* Make functools.wraps() docs a bit clearer.Georg Brandl2007-02-151-6/+11
* Backport 53776: Ignore directory time stampsMartin v. Löwis2007-02-141-1/+2
* Patch #1657276: Make NETLINK_DNRTMSG conditional.Martin v. Löwis2007-02-132-0/+4
* Bug #1658794: Remove extraneous 'this'.Martin v. Löwis2007-02-131-1/+1
* Patch #685268: Consider a package's __path__ in imputil.Martin v. Löwis2007-02-132-0/+6
* Patch 1463026: Support default namespace in XMLGenerator.Martin v. Löwis2007-02-123-17/+59
* Bug #1656581: Point out that external file objects are supposed to beLars Gustäbel2007-02-121-2/+3
* backport: fix trace.py --ignore-dirSkip Montanaro2007-02-112-1/+4
* Bug #1656078: typo in in profile docs.Georg Brandl2007-02-091-1/+1
* Update broken link.Martin v. Löwis2007-02-091-1/+1
* Bug #1600860: Search for shared python library in LIBDIR, notMartin v. Löwis2007-02-092-3/+15
* Bug #1653736: Properly discard third argument to slot_nb_inplace_power.Martin v. Löwis2007-02-092-1/+9
* Bug #1653736: Complain about keyword arguments to time.isoformat.Martin v. Löwis2007-02-083-2/+9
* Fix docstring bugRaymond Hettinger2007-02-081-1/+1
* Bypass set specific optimizations for set and frozenset subclasses.Raymond Hettinger2007-02-081-7/+7
* Do not let overflows in enumerate() and count() pass silently.Raymond Hettinger2007-02-074-2/+16
* Silence compiler warningRaymond Hettinger2007-02-071-1/+1
* Bug #1575169: operator.isSequenceType() now returns False for subclasses of d...Raymond Hettinger2007-02-073-0/+6
* Check for a common user error with defaultdict().Raymond Hettinger2007-02-073-4/+13
* SF: 1397711 Set docs conflated immutable and hashableRaymond Hettinger2007-02-071-1/+1
* SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclassesRaymond Hettinger2007-02-072-1/+9
* Applied patch 1124861.3.patch to solve bug #1124861: Automatically create pip...Peter Astrand2007-02-062-3/+28
* Bug #1648179: set.update() not recognizing __iter__ overrides in dict subcla...Raymond Hettinger2007-02-012-4/+7
* [Patch #783050 from Patrick Lynch] The emulation of forkpty() is incorrect;Georg Brandl2007-01-313-0/+20
* Bug #1648191: typo in docs.Georg Brandl2007-01-301-1/+1
* Bug #1645944: os.access now returns bool but docstring is not updatedGeorg Brandl2007-01-271-1/+1
* Patch #1638243: the compiler package is now able to correctly compileGeorg Brandl2007-01-274-1/+38
* fix typo (extraneous ")")Fred Drake2007-01-261-1/+1
* Backport fix for bug #1643943.Brett Cannon2007-01-253-31/+36
* Merged revisions 53556 via svnmerge fromThomas Heller2007-01-252-8/+23
* Strengthen warning about using lock()Andrew M. Kuchling2007-01-241-8/+12
* Clarify bug #1377858 entry.Brett Cannon2007-01-231-1/+2
* If you created a weakref in an object's __del__ method to itself it wouldBrett Cannon2007-01-235-1/+33
* Make PyTraceBack_Here use the current thread, not theMartin v. Löwis2007-01-232-1/+4
* Backport trunk revision 53527:Thomas Wouters2007-01-234-6/+13
* 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
* [Bug #1552726] Avoid unnecessary polling at the interpreter prompt when certa...Andrew M. Kuchling2007-01-222-1/+9
* Update version of What's NewAndrew M. Kuchling2007-01-221-17/+27
* Avoid O(N**2) bottleneck in _communicate_(). Fixes #1598181. Backport from re...Peter Astrand2007-01-212-3/+6
* Patch #1627441: close sockets properly in urllib2.Georg Brandl2007-01-215-6/+63