1. 933520b Fix a place where it's pretty clear that a binary open mode was intended. by Guido van Rossum · 17 years ago
  2. 4f0db6e Cleanup. by Guido van Rossum · 17 years ago
  3. 756aa93 A class used as an exception should inherit from Exception. by Guido van Rossum · 17 years ago
  4. 9be5597 Add some backwards compatibility stuff. by Guido van Rossum · 17 years ago
  5. 76c5d4d Checkpoint. by Guido van Rossum · 17 years ago
  6. 1866859 Get rid of duplicate definition of BufferedIOBase. by Guido van Rossum · 17 years ago
  7. 78892e4 Added a working Text I/O layer, by Mark Russell. by Guido van Rossum · 17 years ago
  8. 42dae6a Make readonly members defined in C throw an AttributeError on modification. This brings them into sync with Python-level attributes. Fixes bug #1687163. by Collin Winter · 17 years ago
  9. d84da1b More fixes related to removal of exception slicing. by Guido van Rossum · 17 years ago
  10. 782ff27 Fix errors in bsddb3 tests due to removal of exception slicing. by Guido van Rossum · 17 years ago
  11. cef2098 Moving xreload to the sandbox for now. by Guido van Rossum · 17 years ago
  12. e27dc72 By default, != returns the opposite of ==, unless the latter returns by Guido van Rossum · 17 years ago
  13. e33761d Fix two bugs related to the remove of exception subscripting. by Collin Winter · 17 years ago
  14. ca477b2 When removing indexing/slicing on exceptions some places were changed by Brett Cannon · 17 years ago
  15. 390d29c Remove isCallable() and sequenceIncludes() from the operator module. by Collin Winter · 17 years ago
  16. 670e692 Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also, reimplement atexit in C so it can take advantage of this private API. by Collin Winter · 17 years ago
  17. 89df245 Make test_socket_ssl.py pass by fixing some code that was by Guido van Rossum · 17 years ago
  18. 7cba850 Use input() now that it is available. by Guido van Rossum · 17 years ago
  19. d16e81a Fix the compiler package w.r.t. the new metaclass syntax. by Guido van Rossum · 17 years ago
  20. dde0028 Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ." for Ellipsis. by Georg Brandl · 17 years ago
  21. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago
  22. ef17c16 Bug 1679498: remove unused instance variables _readable, _writable and by Guido van Rossum · 17 years ago
  23. bb09b21 Bug 1679498: unset variable 'bs'. by Guido van Rossum · 17 years ago
  24. c819dea Add some XXX comments and fix BufferedReader signature. by Guido van Rossum · 17 years ago
  25. e32b422 Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. by Georg Brandl · 17 years ago
  26. 7afaa88 Move test_unittest, test_doctest and test_doctest2 higher up in the test order by Collin Winter · 17 years ago
  27. 49dc35b Fix another unittest that broke due to dict views (more precisely, due by Guido van Rossum · 17 years ago
  28. de3bc7c Fix embarrassing syntax mix. by Guido van Rossum · 17 years ago
  29. a9e2024 Check in Daniel Stutzbach's _fileio.c and test_fileio.py by Guido van Rossum · 17 years ago
  30. 4d0f5a4 Delete TESTFN after the test. by Guido van Rossum · 17 years ago
  31. 00efead Change the specs for readinto() -- it should *not* shorten the buffer to by Guido van Rossum · 17 years ago
  32. 01a2752 New version from Mike Verdone (sat in my inbox since 2/27). by Guido van Rossum · 17 years ago
  33. c788554 Addendum of patch #1669633: additional tests for bytes methods. by Georg Brandl · 17 years ago
  34. 2e65f89 Final part of SF# 1607548 by Tony Lownds: fix pydoc and inspect. by Guido van Rossum · 17 years ago
  35. 4b7f317 regenerated to reflect the addition of 'nonlocal' and removal of 'print' by Jack Diederich · 17 years ago
  36. 4573942 Regenerate symbol.py. by Guido van Rossum · 17 years ago
  37. 3695bf3 Use __builtin__, not __builtins__. by Brett Cannon · 17 years ago
  38. 4af7dcf Fix test_pep352 to deal with the removal of the 'exceptions' module. by Brett Cannon · 17 years ago
  39. 6f8fe15 Fix httplib for removal of slicing from exceptions. by Brett Cannon · 17 years ago
  40. 6968b05 SF patch #1669633, add methods for bytes from Pete Shinners. by Neal Norwitz · 17 years ago
  41. fa04e1a Fix breakage from removing exceptions module by Neal Norwitz · 17 years ago
  42. 68bbcd2 Mike Verdone's checkpoint, cleaned up. by Guido van Rossum · 17 years ago
  43. 17e43e5 Added some comments and docstrings. More is needed. by Guido van Rossum · 17 years ago
  44. 0b9b9e0 Implement bytes.fromhex(), with tests. by Georg Brandl · 17 years ago
  45. 81e9502 Provisional implementation of PEP 3104. by Jeremy Hylton · 17 years ago
  46. 8b41c3d Add some XXX comments for Guido to look at. by Neal Norwitz · 17 years ago
  47. 28524c7 Checkpoint for new I/O library. by Guido van Rossum · 17 years ago
  48. b69b2e5 Remove duplicate refs to int from int/long unification presumably. (There might be more refs like these.) by Neal Norwitz · 17 years ago
  49. ba7bf49 Remove the ability to slice/index on exceptions per PEP 352. by Brett Cannon · 17 years ago
  50. 44c5261 Tweak the fix for test_traceback since the fix for it to run on its own broke by Brett Cannon · 17 years ago
  51. dfb2a8a Fix a broken test in test_traceback where the module name was being tacked on by Brett Cannon · 17 years ago
  52. 2633c69 Remove the exceptions builtin module, all the exceptions are already builtin. by Neal Norwitz · 17 years ago
  53. f543348 Fix another loop over a dict that may change... :-( by Guido van Rossum · 17 years ago
  54. ce4a475 Add -d/--debug option to print traceback without -v/--verbose. by Guido van Rossum · 17 years ago
  55. 0240b92 Two more patches by Tony Lownds (SF# 1607548). by Guido van Rossum · 17 years ago
  56. f74225d You can no longer catch non-BaseException objects; TypeError is raised if such by Brett Cannon · 17 years ago
  57. a88a033 Add raw_input() back, named input(). Revive the old unittests too. by Guido van Rossum · 17 years ago
  58. e8ef4e1 Add a partial list of limitations, stripping out some corresponding XXX comments. by Guido van Rossum · 17 years ago
  59. 4f7ac2e Change a test to be more predictable. by Guido van Rossum · 17 years ago
  60. c145ef3 Use better idiom to sort keys. by Guido van Rossum · 17 years ago
  61. b79b781 Fix token.py main code vs. dict views. by Georg Brandl · 17 years ago
  62. 634e53f Fix a bizarre error where test_pickletools fails if preceded by test_pyclbr. by Guido van Rossum · 17 years ago
  63. 5dc0d97 Fix merge bug (lost line causing syntax error). by Guido van Rossum · 17 years ago
  64. 5c0a6de Use Glyph's trick to ensure that __globals__ is set properly. by Guido van Rossum · 17 years ago
  65. 55b4a4a Add a proper unit test for xreload.py. by Guido van Rossum · 17 years ago
  66. 221085d Change all the function attributes from func_* -> __*__. This gets rid by Neal Norwitz · 17 years ago
  67. 9a7e774 Add support for static and class methods. by Guido van Rossum · 17 years ago
  68. 88470ec Fix typo by Neal Norwitz · 17 years ago
  69. ebbc01e First draft of a different solution to the reload() problem. by Guido van Rossum · 17 years ago
  70. ee91be4 Make bytes_repr return a string containing a b"" literal. by Georg Brandl · 17 years ago
  71. fa35365 Merged revisions 53859-53874 via svnmerge from by Thomas Wouters · 17 years ago
  72. 00e41de Bytes literal. by Thomas Wouters · 17 years ago
  73. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  74. 63eecc7 Fix the last two tests. by Guido van Rossum · 17 years ago
  75. 0072e43 Fix test_bsddb3 (along with something bsddb) to work with dict views. by Brett Cannon · 17 years ago
  76. 5b8d24a Fix obvious problems from switch to dict views. Some tests still fail over by Brett Cannon · 17 years ago
  77. c1b22a0 Fix dumbdbm and test_dumbdbm to work with dict views. Bug in dumbdbm was from by Brett Cannon · 17 years ago
  78. f0c82f9 Fix test_importhooks for dict views. by Brett Cannon · 17 years ago
  79. 0caf6d8 Fix test_iter after the dict views conversion. by Brett Cannon · 17 years ago
  80. eb6b0ee Fix test_iterlen by returning the iterator of dict views. Problem is that by Brett Cannon · 17 years ago
  81. 861fd6f Fix xml.dom.minidom so it works again after the dict views introduction. by Brett Cannon · 17 years ago
  82. ecca313 Fix test_mutants for dict views. by Brett Cannon · 17 years ago
  83. 67582d2 Fix test_os from breakage due to dict views. by Brett Cannon · 17 years ago
  84. b38e2bc Fix plistlib to work with dict views. by Brett Cannon · 17 years ago
  85. 75d26cc Some more test now pass. by Guido van Rossum · 17 years ago
  86. d81206d Fix the damage to UserDict and its tests. by Guido van Rossum · 17 years ago
  87. e34cdd1 Fix for test_dict.py, thanks to Eduardo O Padoan. by Guido van Rossum · 17 years ago
  88. d9214d1 Make dict.keys() and dict.items() comparable to sets, using == and !=. by Guido van Rossum · 17 years ago
  89. e19aad4 Fix unittest. by Guido van Rossum · 17 years ago
  90. dde4c2c Fix another unit test. by Guido van Rossum · 17 years ago
  91. 8b8a543 Make test_logging pass. by Guido van Rossum · 17 years ago
  92. c2d9d7f Checkin the regenerated Python-ast.c and fix test_optparse. by Georg Brandl · 17 years ago
  93. 07f2436 Nailed test_weakref.py. Pfew, messy! by Guido van Rossum · 17 years ago
  94. 9afbb4e Two more trivial fixes. by Guido van Rossum · 17 years ago
  95. cd70eee Another fix. Partly reverted the tweaks done by the previous fix. by Guido van Rossum · 17 years ago
  96. 091153d Make test_sax pass. by Guido van Rossum · 17 years ago
  97. 87b6395 With the help of the improved fixer, test_with.py is now fixed. by Guido van Rossum · 17 years ago
  98. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  99. 3ac6741 Implement __contains__ for dict_keys and dict_items. by Guido van Rossum · 17 years ago
  100. 83825ac Endow dict views with a proper length method. by Guido van Rossum · 17 years ago