- 634e53f Fix a bizarre error where test_pickletools fails if preceded by test_pyclbr. by Guido van Rossum · 18 years ago
- 032a284 Don't confound Neil S on b"a"[0] = b"b". by Guido van Rossum · 18 years ago
- 5e0af3c put a missing curly brace by George Yoshida · 18 years ago
- 025488b These comments aren't relevant for 3k. They were to support modules compiled by Neal Norwitz · 18 years ago
- 5dc0d97 Fix merge bug (lost line causing syntax error). by Guido van Rossum · 18 years ago
- 5c0a6de Use Glyph's trick to ensure that __globals__ is set properly. by Guido van Rossum · 18 years ago
- 55b4a4a Add a proper unit test for xreload.py. by Guido van Rossum · 18 years ago
- 221085d Change all the function attributes from func_* -> __*__. This gets rid by Neal Norwitz · 18 years ago
- 27d517b Merged revisions 53875-53911 via svnmerge from by Thomas Wouters · 18 years ago
- 9a7e774 Add support for static and class methods. by Guido van Rossum · 18 years ago
- 88470ec Fix typo by Neal Norwitz · 18 years ago
- ebbc01e First draft of a different solution to the reload() problem. by Guido van Rossum · 18 years ago
- ee91be4 Make bytes_repr return a string containing a b"" literal. by Georg Brandl · 18 years ago
- fa35365 Merged revisions 53859-53874 via svnmerge from by Thomas Wouters · 18 years ago
- 7ea15d0 Prevent regeneration. by Thomas Wouters · 18 years ago
- 8b4a3e8 Touch file to regenerate Python-ast.[ch] by Thomas Wouters · 18 years ago
- 00e41de Bytes literal. by Thomas Wouters · 18 years ago
- cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 18 years ago
- 63eecc7 Fix the last two tests. by Guido van Rossum · 18 years ago
- 0072e43 Fix test_bsddb3 (along with something bsddb) to work with dict views. by Brett Cannon · 18 years ago
- 5b8d24a Fix obvious problems from switch to dict views. Some tests still fail over by Brett Cannon · 18 years ago
- c7e9d74 Remove test_dumbdbm as failing. by Brett Cannon · 18 years ago
- c1b22a0 Fix dumbdbm and test_dumbdbm to work with dict views. Bug in dumbdbm was from by Brett Cannon · 18 years ago
- f0c82f9 Fix test_importhooks for dict views. by Brett Cannon · 18 years ago
- 0caf6d8 Fix test_iter after the dict views conversion. by Brett Cannon · 18 years ago
- eb6b0ee Fix test_iterlen by returning the iterator of dict views. Problem is that by Brett Cannon · 18 years ago
- 861fd6f Fix xml.dom.minidom so it works again after the dict views introduction. by Brett Cannon · 18 years ago
- ecca313 Fix test_mutants for dict views. by Brett Cannon · 18 years ago
- 67582d2 Fix test_os from breakage due to dict views. by Brett Cannon · 18 years ago
- b38e2bc Fix plistlib to work with dict views. by Brett Cannon · 18 years ago
- 75d26cc Some more test now pass. by Guido van Rossum · 18 years ago
- d81206d Fix the damage to UserDict and its tests. by Guido van Rossum · 18 years ago
- e34cdd1 Fix for test_dict.py, thanks to Eduardo O Padoan. by Guido van Rossum · 18 years ago
- d4588c1 Get rid of some old TO TO items. by Guido van Rossum · 18 years ago
- 4726942 List of broken tests at this time. If you fix a test, please update this file. by Guido van Rossum · 18 years ago
- d9214d1 Make dict.keys() and dict.items() comparable to sets, using == and !=. by Guido van Rossum · 18 years ago
- e19aad4 Fix unittest. by Guido van Rossum · 18 years ago
- dde4c2c Fix another unit test. by Guido van Rossum · 18 years ago
- 8b8a543 Make test_logging pass. by Guido van Rossum · 18 years ago
- c2d9d7f Checkin the regenerated Python-ast.c and fix test_optparse. by Georg Brandl · 18 years ago
- 07f2436 Nailed test_weakref.py. Pfew, messy! by Guido van Rossum · 18 years ago
- 9afbb4e Two more trivial fixes. by Guido van Rossum · 18 years ago
- cd70eee Another fix. Partly reverted the tweaks done by the previous fix. by Guido van Rossum · 18 years ago
- 091153d Make test_sax pass. by Guido van Rossum · 18 years ago
- 87b6395 With the help of the improved fixer, test_with.py is now fixed. by Guido van Rossum · 18 years ago
- cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
- 4e66dfc Random change to make this work unchanged when dict.keys() returns a dict view. by Guido van Rossum · 18 years ago
- 3ac6741 Implement __contains__ for dict_keys and dict_items. by Guido van Rossum · 18 years ago
- 83825ac Endow dict views with a proper length method. by Guido van Rossum · 18 years ago
- b90c848 Very preliminary work on dict views. by Guido van Rossum · 18 years ago
- 8b54536 News about softspace. by Guido van Rossum · 18 years ago
- e0192e5 Fix the remaining doctest failures. by Guido van Rossum · 18 years ago
- 79f5543 Ignore *.py[co]. by Guido van Rossum · 18 years ago
- 96bf7e8 Fix test_frozen. by Guido van Rossum · 18 years ago
- 79139b2 Kill off softspace completely (except in formatter.py which seems to have by Guido van Rossum · 18 years ago
- bdc36e4 Redue the failure rate to 13 tests. Bah. by Guido van Rossum · 18 years ago
- 0bcbb0d Fix the roundtripping function. by Guido van Rossum · 18 years ago
- 9b88504 Fairly subtle fix for failing tests. by Guido van Rossum · 18 years ago
- 8df511b Trivial fix for test_profile.py. by Guido van Rossum · 18 years ago
- 4e4035b Found another difference between old and new print: by Guido van Rossum · 18 years ago
- 43fc78d More prints embedded in strings. by Guido van Rossum · 18 years ago
- ceae375 Fix a bogus end=' ' here. by Guido van Rossum · 18 years ago
- 374812c Two tests fixed with one fix. by Guido van Rossum · 18 years ago
- c420b2f Fix another test. by Guido van Rossum · 18 years ago
- d8c1967 Some more tests pass now. (Also test_compiler.py with -u all.) by Guido van Rossum · 18 years ago
- 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 18 years ago
- 08c47ba Fix an unfortunate mis-conversion: sometimes "print x," must be by Guido van Rossum · 18 years ago
- fff80df Revert doubly-converted doctests. by Guido van Rossum · 18 years ago
- 7131f84 Fix a bunch of doctests with the -d option of refactor.py. by Guido van Rossum · 18 years ago
- 4502c80 Note that print is a function now. by Guido van Rossum · 18 years ago
- be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
- 452bf51 Essential changes for print function changes. by Guido van Rossum · 18 years ago
- 21298cf Remove bogus INCREF of ziptuple: it is a freshly-allocated tuple object. by Martin v. Löwis · 18 years ago
- 14b6d92 Fix refcounting bugs related to CONVERT_BINOP. by Martin v. Löwis · 18 years ago
- 9fe394c Merged revisions 53538-53622 via svnmerge from by Thomas Wouters · 18 years ago
- 08f0046 - Fix conversion glitch in test_pyclbr, which caused a test to not fail by Thomas Wouters · 18 years ago
- b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 18 years ago
- ec7027f Update news about int/long unification. by Guido van Rossum · 18 years ago
- 398db8b Add missing entry for PEP 3102 (keyword-only arguments). by Brett Cannon · 18 years ago
- e33a611 Fix minor grammar typo. by Brett Cannon · 18 years ago
- c7202a8 Fix L-suffixed literal straggler. by Guido van Rossum · 18 years ago
- e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
- fc7bb8c Merged revisions 53304-53433,53435-53450 via svnmerge from by Thomas Wouters · 18 years ago
- c5c6f24 No more tests are broken AFAIK. by Guido van Rossum · 18 years ago
- 523d4f9 Fix the sqlite failure -- it was the usual, PyInt_Check -> PyInt_CheckExact. by Guido van Rossum · 18 years ago
- f410000 Fix pickletools doctests -- all we get nowadays is longs. by Guido van Rossum · 18 years ago
- 4c9695a Fix repr.py -- it was triggering on the type name 'long', should be 'int'. by Guido van Rossum · 18 years ago
- 018919a Merged revisions 53434 via svnmerge from by Guido van Rossum · 18 years ago
- 65eabe3 One more test breakage hits the dust. The test was clearly in the wrong. by Guido van Rossum · 18 years ago
- 56be3b1 Fix new bug in ftplib.py introduced by exception scope limitation. by Guido van Rossum · 18 years ago
- 3a4e978 Honesty before all. by Guido van Rossum · 18 years ago
- 52d0178 Fix cPickle breakage due to last-minute change to the name of the 'long' type by Guido van Rossum · 18 years ago
- ab18684 News about int/long unification and except syntax change. by Guido van Rossum · 18 years ago
- ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
- 5b787e8 Fix pybench so it works -- Larry Hastings. by Guido van Rossum · 18 years ago
- 16be03e Some more changes related to the new except syntax and semantics, by Guido van Rossum · 18 years ago
- b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
- 893523e News about removal of the sets module. by Guido van Rossum · 18 years ago
- 33552e9 Excise the sets module. SF #1500611 by Collin Winter. by Guido van Rossum · 18 years ago
- 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago