1. 71011e2 Allow decorators and return annotations to be used together (fixes SF#1697248) by Nick Coghlan · 17 years ago
  2. 4138bfe Don't crash when nonlocal is used at module level (fixes SF#1705365) by Nick Coghlan · 17 years ago
  3. 846f1ee Add a note to this file that it might be out of date and need some care. by Neal Norwitz · 17 years ago
  4. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  5. 4d2adcc Make it compile with C89. by Guido van Rossum · 17 years ago
  6. 2fa74bb If $PYTHONNEWIO is set and nonempty, by Guido van Rossum · 17 years ago
  7. 9d72bb4 Remove functions in string module that are also string methods. Also remove: by Neal Norwitz · 17 years ago
  8. ff11334 Remove the SlowParser class because it depended on the xmllib module by Neal Norwitz · 17 years ago
  9. 53855c6 Remove the xmllib module that was obsolete. by Neal Norwitz · 17 years ago
  10. e6c6e3d Remove old string module by Neal Norwitz · 17 years ago
  11. 9b483f1 Remove ancient platforms: AIX 3 and Irix 5. (AIX 4 and Irix 6 remain.) by Neal Norwitz · 17 years ago
  12. d76e779 Instead of pickling the whole decoder, use the new getstate/setstate API. by Guido van Rossum · 17 years ago
  13. 3abcb01 Apply SF patch #1698994: Add getstate() and setstate() by Walter Dörwald · 17 years ago
  14. 8981ad0 Check in the inevitable change to the version number. by Guido van Rossum · 17 years ago
  15. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  16. 6ef6306 Oops, don't test for a name attribute here. That's a higher-level feature. by Guido van Rossum · 17 years ago
  17. 13633bb Support name and mode attributes on all file types. by Guido van Rossum · 17 years ago
  18. 913dd0b struct.unpack() allows a bytes string too (if it has the right size). by Guido van Rossum · 17 years ago
  19. 98f9746 Support marshal.dump(x, f) where f is not a real file. by Guido van Rossum · 17 years ago
  20. 84d79dd Disallow u"..." + b"..." and b"..." + u"...". by Guido van Rossum · 17 years ago
  21. ad7d8d1 Rough and dirty job -- allow concatenation of bytes and arbitrary by Guido van Rossum · 17 years ago
  22. dc0b1a1 Make a few more tests pass with the new I/O library. by Guido van Rossum · 17 years ago
  23. b6f1fdc Clean up trailing whitespace. by Guido van Rossum · 17 years ago
  24. 682faf8 Fix most XXX remarks. by Guido van Rossum · 17 years ago
  25. 31c3a57 Test closed, mode attribute; don't test __exit__(). by Guido van Rossum · 17 years ago
  26. d410395 Make sure that writing an array instance returns the number of bytes, by Guido van Rossum · 17 years ago
  27. aa43ed9 TextIO improvement: by Guido van Rossum · 17 years ago
  28. 57b39e0 Bug #1697782: remove all remaining code that uses types.InstanceType. by Georg Brandl · 17 years ago
  29. b5ddcfd Make array().tofile() work with a new I/O object. by Guido van Rossum · 17 years ago
  30. d071281 Re-enable cleanup code. by Guido van Rossum · 17 years ago
  31. b9c4c3e Speed up next() by disabling snapshot updating then. by Guido van Rossum · 17 years ago
  32. cba608c More efficient implementation of tell(); _read_chunk() doesn't have to by Guido van Rossum · 17 years ago
  33. 0dd32e2 Real pickling for bytes. Restore complex pickling. Use cPickle in io.py. by Guido van Rossum · 17 years ago
  34. 0ad0812 An example of action-at-a-distance: fix the problems I had in test_io.py by Guido van Rossum · 17 years ago
  35. 9b76da6 Checkpoint so I can continue to work on this at a different box. by Guido van Rossum · 17 years ago
  36. 8742977 truncate() returns the new size and position. by Guido van Rossum · 17 years ago
  37. 34d69e5 Skip large file tests on Windowns and OSX. by Guido van Rossum · 17 years ago
  38. 53807da Implement long positioning (Unix only, probably). Etc., etc. by Guido van Rossum · 17 years ago
  39. cce92b2 BufferedIOBase and TextIOBase should derive from IOBase, not from RawIOBase! by Guido van Rossum · 17 years ago
  40. 141f767 More cleanup. Renamed BlockingIO to BlockingIOError. by Guido van Rossum · 17 years ago
  41. ebea9be Bytes should never equal unicode. Add tests for str <cmpop> bytes. by Guido van Rossum · 17 years ago
  42. 343e97f For Make Benefit Glorious Nation of Backwards Compatibility, by Guido van Rossum · 17 years ago
  43. 62cbc8a Make sure that a forked child process exits even if it raises an exception. by Guido van Rossum · 17 years ago
  44. 933520b Fix a place where it's pretty clear that a binary open mode was intended. by Guido van Rossum · 17 years ago
  45. 4f0db6e Cleanup. by Guido van Rossum · 17 years ago
  46. b042815 Make it possible to instantiate a _FileIO() with an integer file descriptor by Guido van Rossum · 17 years ago
  47. b8551ae Somehow this contained a bogus reference to "exceptions" which caused by Guido van Rossum · 17 years ago
  48. 756aa93 A class used as an exception should inherit from Exception. by Guido van Rossum · 17 years ago
  49. 9be5597 Add some backwards compatibility stuff. by Guido van Rossum · 17 years ago
  50. 76c5d4d Checkpoint. by Guido van Rossum · 17 years ago
  51. 1866859 Get rid of duplicate definition of BufferedIOBase. by Guido van Rossum · 17 years ago
  52. 78892e4 Added a working Text I/O layer, by Mark Russell. by Guido van Rossum · 17 years ago
  53. 0e07448 make the markup match that of the trunk to avoid insane spread of by Fred Drake · 17 years ago
  54. 6b18a5b Fix refcounting bug reported by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  55. 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
  56. d84da1b More fixes related to removal of exception slicing. by Guido van Rossum · 17 years ago
  57. 782ff27 Fix errors in bsddb3 tests due to removal of exception slicing. by Guido van Rossum · 17 years ago
  58. cef2098 Moving xreload to the sandbox for now. by Guido van Rossum · 17 years ago
  59. e27dc72 By default, != returns the opposite of ==, unless the latter returns by Guido van Rossum · 17 years ago
  60. a4335b1 Looks like this file wasn't checked in. by Guido van Rossum · 17 years ago
  61. e33761d Fix two bugs related to the remove of exception subscripting. by Collin Winter · 17 years ago
  62. 3e81ec8 Address some XXXs from Neal Norwitz. by Collin Winter · 17 years ago
  63. ca477b2 When removing indexing/slicing on exceptions some places were changed by Brett Cannon · 17 years ago
  64. 3a38362 Fix refleak in compiler. by Guido van Rossum · 17 years ago
  65. 390d29c Remove isCallable() and sequenceIncludes() from the operator module. by Collin Winter · 17 years ago
  66. 7d71fb8 Little fixes: by Neal Norwitz · 17 years ago
  67. 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
  68. 450ee81 Use the local python binary to build the docs, not whatever 'python' is on the PATH (which is probably Python 2.x, and we need 3.x). by Collin Winter · 17 years ago
  69. 65d09d4 Run 2to3 over Doc/tools/. by Collin Winter · 17 years ago
  70. 89df245 Make test_socket_ssl.py pass by fixing some code that was by Guido van Rossum · 17 years ago
  71. 7cba850 Use input() now that it is available. by Guido van Rossum · 17 years ago
  72. e66c8c7 "from ... import x" should not be a syntax error... make by Georg Brandl · 17 years ago
  73. d16e81a Fix the compiler package w.r.t. the new metaclass syntax. by Guido van Rossum · 17 years ago
  74. 801dd73 NEWS item for PEP 3115. by Georg Brandl · 17 years ago
  75. d35e970 Refactor astgen.py with 2to3. by Georg Brandl · 17 years ago
  76. dde0028 Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ." for Ellipsis. by Georg Brandl · 17 years ago
  77. 428f064 Remove the deprecated and useless "pend" argument from by Georg Brandl · 17 years ago
  78. 9091e3a Update the silly version number. by Guido van Rossum · 17 years ago
  79. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago
  80. ef17c16 Bug 1679498: remove unused instance variables _readable, _writable and by Guido van Rossum · 17 years ago
  81. bb09b21 Bug 1679498: unset variable 'bs'. by Guido van Rossum · 17 years ago
  82. c819dea Add some XXX comments and fix BufferedReader signature. by Guido van Rossum · 17 years ago
  83. 44d7bee Add Mike Verdone (co-author of io.py and PEP 3116). by Guido van Rossum · 17 years ago
  84. ed3b838 Check the keys of the locals dict -- they need not be a list. by Georg Brandl · 17 years ago
  85. e32b422 Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. by Georg Brandl · 17 years ago
  86. af33438 Add a missing forward declaration for PyFileIO_Type. The _fileio module now compiles with --with-pydebug. by Collin Winter · 17 years ago
  87. 7afaa88 Move test_unittest, test_doctest and test_doctest2 higher up in the test order by Collin Winter · 17 years ago
  88. 49dc35b Fix another unittest that broke due to dict views (more precisely, due by Guido van Rossum · 17 years ago
  89. de3bc7c Fix embarrassing syntax mix. by Guido van Rossum · 17 years ago
  90. a9e2024 Check in Daniel Stutzbach's _fileio.c and test_fileio.py by Guido van Rossum · 17 years ago
  91. 4d0f5a4 Delete TESTFN after the test. by Guido van Rossum · 17 years ago
  92. 00efead Change the specs for readinto() -- it should *not* shorten the buffer to by Guido van Rossum · 17 years ago
  93. 01a2752 New version from Mike Verdone (sat in my inbox since 2/27). by Guido van Rossum · 17 years ago
  94. c788554 Addendum of patch #1669633: additional tests for bytes methods. by Georg Brandl · 17 years ago
  95. 2e65f89 Final part of SF# 1607548 by Tony Lownds: fix pydoc and inspect. by Guido van Rossum · 17 years ago
  96. 4b7f317 regenerated to reflect the addition of 'nonlocal' and removal of 'print' by Jack Diederich · 17 years ago
  97. 4573942 Regenerate symbol.py. by Guido van Rossum · 17 years ago
  98. 3695bf3 Use __builtin__, not __builtins__. by Brett Cannon · 17 years ago
  99. 4af7dcf Fix test_pep352 to deal with the removal of the 'exceptions' module. by Brett Cannon · 17 years ago
  100. 4fc8ae4 Fix off-by-one bug in memmove() call in bytes_insert(). by Guido van Rossum · 17 years ago