- d220144 Fix directory names to have only one trailing slash. by Lars Gustäbel · 18 years ago
- e6e383f Revert SF #1615701 (rev 53655): dict.update() does *not* call __getitem__() or by Neal Norwitz · 18 years ago
- 8d61db5 Revert 54805 for 2.5.1 release. Can be applied after 2.5 branch is unfrozen. by Neal Norwitz · 18 years ago
- 9bd522d Add code to read from master_fd in the parent, breaking when we get an OSError by Barry Warsaw · 18 years ago
- 3608f05 Bug #1563759: struct.unpack doens't support buffer protocol objects by Raymond Hettinger · 18 years ago
- 8863544 Bug #1686475: Support stat'ing open files on Windows again. by Martin v. Löwis · 18 years ago
- d6030ac Array module's buffer interface can now handle empty arrays. by Raymond Hettinger · 18 years ago
- 4bbcb64 SF #1693079 Array module cannot pickle empty arrays by Raymond Hettinger · 18 years ago
- 65407fb Backport 54594: Fix SF #1688393, sock.recvfrom(-24) crashes by Neal Norwitz · 18 years ago
- e5df857 Bug #1675967: re patterns pickled with older Python versions can by Žiga Seilnacht · 18 years ago
- 7ed0a65 Test and fix fromkeys optional argument. by Raymond Hettinger · 18 years ago
- 8a10ea4 Patch #1682205: a TypeError while unpacking an iterable is no longer by Georg Brandl · 18 years ago
- f94e89c Extend work on rev 52962 and 53830 eliminating redundant PyObject_Hash() calls and fixing set/dict interoperability. by Raymond Hettinger · 18 years ago
- 7d9ac78 Patch #1642547: Fix an error/crash when encountering syntax errors in complex if statements. by Collin Winter · 18 years ago
- c1b4e8e Patch #1462488: prevent a segfault in object_reduce_ex() by splitting by Žiga Seilnacht · 18 years ago
- 7520df4 Patch #1559413: Fix test_cmd_line if sys.executable contains a space. by Martin v. Löwis · 18 years ago
- 94c8872 Patch #1680015: Don't modify __slots__ tuple if it contains an unicode by Žiga Seilnacht · 18 years ago
- 027ac24 Bug #767111: fix long-standing bug in urllib which caused an by Georg Brandl · 18 years ago
- e19d7a3 Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167. by Collin Winter · 18 years ago
- fbf1f3e Fix resource leak reported in SF #1516995. by Vinay Sajip · 18 years ago
- 69fe9e4 Convert an assert to a raise so it works even in the presence of -O. by Collin Winter · 18 years ago
- 237458b Revert rev. 54198, it's not really backwards compatible. by Georg Brandl · 18 years ago
- 86d8d35 Bug #1531963: Make SocketServer.TCPServer's server_address always be equal to calling getsockname() on the server's socket. Fixed by patch #1545011. by Collin Winter · 18 years ago
- afd9b2b Manual backport of r54233. This will help prevent spurious Buildbot failures by Brett Cannon · 18 years ago
- 590af0a Backported r54226 from p3yk: Move test_unittest, test_doctest and test_doctest2 higher up in the testing order. by Collin Winter · 18 years ago
- 0c4f3fd Backport skipping fromtimestamp(negative value) tests on Windows (from rev. 54209) by Georg Brandl · 18 years ago
- 84a0b8d Patch #1001604: glob.glob() now returns unicode filenames if it was by Georg Brandl · 18 years ago
- 05b5c7f Backport checkin: by Walter Dörwald · 18 years ago
- 62b1b00 Patch #1654417: make operator.{get,set,del}slice use the full range by Georg Brandl · 18 years ago
- ffb0a80 Patch #1638879: don't accept strings with embedded NUL bytes in long(). by Georg Brandl · 18 years ago
- 02d7cff Patch #1646728: datetime.fromtimestamp fails with negative by Georg Brandl · 18 years ago
- 1a74b43 A test case for the defaultdict KeyError bug. (backport from rev. 54162) by Georg Brandl · 18 years ago
- 0520e03 A test case for the fix in #1674228. (backport from rev. 54154) by Georg Brandl · 18 years ago
- 0ea8916 Patch #1674228: when assigning a slice (old-style), check for the by Georg Brandl · 18 years ago
- 131069b Fix a bug in test_dict and test_userdict, found at the PyPy sprint. by Georg Brandl · 18 years ago
- d882e36 Fix constantification of None. by Raymond Hettinger · 18 years ago
- 25e7cfa Backported r51621 from p3yk: by Thomas Wouters · 18 years ago
- 1bff796 Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash(). by Raymond Hettinger · 18 years ago
- 497380f Revert r53672. by Martin v. Löwis · 18 years ago
- 626b2e9 Patch 1463026: Support default namespace in XMLGenerator. Fixes #847665. by Martin v. Löwis · 19 years ago
- 2e8b602 Bug #1653736: Complain about keyword arguments to time.isoformat. by Martin v. Löwis · 19 years ago
- 9f0e1ea Do not let overflows in enumerate() and count() pass silently. by Raymond Hettinger · 19 years ago
- 127ef44 Bug #1575169: operator.isSequenceType() now returns False for subclasses of dict. by Raymond Hettinger · 19 years ago
- 113776c Check for a common user error with defaultdict(). by Raymond Hettinger · 19 years ago
- 20dcf1c SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclasses by Raymond Hettinger · 19 years ago
- cd7a78e [Patch #783050 from Patrick Lynch] The emulation of forkpty() is incorrect; by Georg Brandl · 19 years ago
- 20aa477 Patch #1638243: the compiler package is now able to correctly compile by Georg Brandl · 19 years ago
- 6d8e5ad Backport fix for bug #1643943. by Brett Cannon · 19 years ago
- 75ba075 If you created a weakref in an object's __del__ method to itself it would by Brett Cannon · 19 years ago
- f446a9b [Bug #1633678] Improve pattern used for mbox 'From' lines; add a simple test by Andrew M. Kuchling · 19 years ago
- 962e916 Patch #1627441: close sockets properly in urllib2. (backport from rev. 53511) by Georg Brandl · 19 years ago
- 8e932e7 Bug #1486663: don't reject keyword arguments for subclasses of builtin by Georg Brandl · 19 years ago
- 29794ec Fix for bug #1634343: allow specifying empty arguments on Windows by Peter Astrand · 19 years ago
- 535989e SF #1486663 -- Allow keyword args in subclasses of set() and frozenset(). by Raymond Hettinger · 19 years ago
- 5b44cbe Fix zero-length corner case for iterating over a mutating deque. by Raymond Hettinger · 19 years ago
- ca516d2 Fix stability of heapq's nlargest() and nsmallest(). by Raymond Hettinger · 19 years ago
- 9cdf703 For sets with cyclical reprs, emit '...' instead of recursing. by Raymond Hettinger · 19 years ago
- 04e8204 Backport trunk checkin r51565: by Thomas Wouters · 19 years ago
- f9a2c63 Patch #1504073: Fix tarfile.open() for mode "r" with a fileobj argument. by Lars Gustäbel · 19 years ago
- 12e087a Patch #1262036: Prevent TarFiles from being added to themselves under by Lars Gustäbel · 19 years ago
- aedb92e Patch #1230446: tarfile.py: fix ExFileObject so that read() and tell() by Lars Gustäbel · 19 years ago
- 5425a67 Bug #1590891: random.randrange don't return correct value for big number by Raymond Hettinger · 19 years ago
- 775ebe2 Backport fixes to set objects: by Raymond Hettinger · 19 years ago
- 25f58f6 Patch #1610437: fix a tarfile bug with long filename headers. by Georg Brandl · 19 years ago
- 9ff1d39 Backport checkin: by Walter Dörwald · 19 years ago
- 90e23c4 Add extra SHA tests by Andrew M. Kuchling · 19 years ago
- 830358a Remove locking of individual message files in MH.pack(). by Andrew M. Kuchling · 19 years ago
- dd3bffb Bug #1588217: don't parse "= " as a soft line break in binascii's by Georg Brandl · 19 years ago
- d52a0b8 [Bug #1569790] mailbox.Maildir.get_folder() loses factory information by Andrew M. Kuchling · 19 years ago
- a1e3422 Correctly forward exception in instance_contains(). by Martin v. Löwis · 19 years ago
- a3ce6aa Backport 52621: Bug #1588287: fix invalid assertion for `1,2` in debug builds. by Neal Norwitz · 19 years ago
- 5e9f94a Bug #1576657: when setting a KeyError for a tuple key, make sure that by Georg Brandl · 19 years ago
- f96b162 I thought I had already fixed this error in the test. by Georg Brandl · 19 years ago
- c68d2cc Bug #1586613: fix zlib and bz2 codecs' incremental en/decoders. by Georg Brandl · 19 years ago
- b8205a1 Fix the new EncodedFile test to work with big endian platforms. by Georg Brandl · 19 years ago
- 2a5a302 Fix codecs.EncodedFile which did not use file_encoding in 2.5.0, and by Georg Brandl · 19 years ago
- 2f0940b Backport 52504: by Neal Norwitz · 19 years ago
- a0a50fe WindowsError.str should display the windows error code, by Thomas Heller · 19 years ago
- 7d1d540 [Bug #1575506] The _singlefileMailbox class was using the wrong file object in its flush() method, causing an error by Andrew M. Kuchling · 19 years ago
- 3d6a834 [Bug #1576241] Let functools.wraps work with built-in functions by Andrew M. Kuchling · 19 years ago
- 62e5804 [Backport of r52452] by Martin v. Löwis · 19 years ago
- ee23f4b Patch [ 1583506 ] tarfile.py: 100-char filenames are truncated by Georg Brandl · 19 years ago
- 920fa6a Remove passwd.adjunct.byname from list of maps for test_nis. by Martin v. Löwis · 19 years ago
- dd4c398 Bug #1545497: when given an explicit base, int() did ignore NULs by Georg Brandl · 19 years ago
- 3c48709 Bug #1548891: The cStringIO.StringIO() constructor now encodes unicode by Georg Brandl · 19 years ago
- 463a42b Bug #1565150: Fix subsecond processing for os.utime on Windows. by Martin v. Löwis · 19 years ago
- f4fe46d Backport from trunk r52223: by Hye-Shik Chang · 19 years ago
- a5fe3ef Fix #1569998: no break inside try statement (outside loop) allowed. by Georg Brandl · 19 years ago
- 74284b9 Patch #1542451: fix crash with continue in nested try/finally by Georg Brandl · 19 years ago
- 4b63c21 Forward-port of r52136: a review of overflow-detecting code. by Armin Rigo · 19 years ago
- 10525ad Fix integer negation and absolute value to not rely by Martin v. Löwis · 19 years ago
- 6d7c363 Bug #1556784: allow format strings longer than 127 characters in by Georg Brandl · 19 years ago
- 7037745 Bug #1560617: in pyclbr, return full module name not only for classes, by Georg Brandl · 19 years ago
- 506cc18 Bug #1566800: make sure that EnvironmentError can be called with any by Georg Brandl · 19 years ago
- af4337a Patch #1567691: super() and new.instancemethod() now don't accept by Georg Brandl · 19 years ago
- c57221e Backport rev. 51972: by Georg Brandl · 19 years ago
- edd81b2 Fix a bug in traceback.format_exception_only() that led to an error by Georg Brandl · 19 years ago
- a6b9ce1 Fix a bug in the parser's future statement handling that led to "with" by Georg Brandl · 19 years ago
- 187e648 backport of r51950 by Jack Diederich · 19 years ago
- c70e003 Backport of fix to allow exception instances to be sliced once again. by Brett Cannon · 19 years ago