1. 0ae29cf The error detection code in FileIO.close() could fail to reflect the `errno` value, and report it as -1 instead. by Antoine Pitrou · 16 years ago
  2. 652e707 Issue #5392: when a very low recursion limit was set, the interpreter would by Antoine Pitrou · 16 years ago
  3. ae2dbe2 #5486: typos. by Georg Brandl · 16 years ago
  4. f87e04d Finish properly hiding importlib implementation code. by Brett Cannon · 16 years ago
  5. e9103d2 Last big re-organization of importlib._bootstrap. Should actually be able to find something in the file now. by Brett Cannon · 16 years ago
  6. ce43ddf Do a little bit of reorganization on importlib._bootstrap. by Brett Cannon · 16 years ago
  7. 3eeaa0a Make utility code in importlib._bootstrap private. by Brett Cannon · 16 years ago
  8. 9495f18 Define importlib.__init__.__all__. by Brett Cannon · 16 years ago
  9. 2c109ab Issue 5477: Fix buglet in the itertools documentation. by Raymond Hettinger · 16 years ago
  10. 6c4b4b2 Add reference to solution for a commonly asked question. by Raymond Hettinger · 16 years ago
  11. 516db94 Merged revisions 70308 via svnmerge from by Tarek Ziadé · 16 years ago
  12. c59cd68 Add a NOTE for importlib to fill in the docstrings for the ABCs. by Brett Cannon · 16 years ago
  13. d8e9526 Blocked revisions 70305 via svnmerge by Brett Cannon · 16 years ago
  14. 150fb9c Record version added as 3.1. by Raymond Hettinger · 16 years ago
  15. 5bb0f0e For collections.deque() objects, expose the maxlen parameter as a read-only attribute. by Raymond Hettinger · 16 years ago
  16. 060c7f6 Small optimization for corner case where maxlen==0. by Raymond Hettinger · 16 years ago
  17. 2cf03a8 Implement importlib.util.set_loader: a decorator to automatically set by Brett Cannon · 16 years ago
  18. d43b30b Implement get_source for importlib.abc.PyLoader using source_path and get_data. by Brett Cannon · 16 years ago
  19. 28c013d Fix markup. by Raymond Hettinger · 16 years ago
  20. 10745a9 fix versionchanged by Benjamin Peterson · 16 years ago
  21. e0124bd Merged revisions 69998-69999,70002,70022-70023,70025-70026,70061,70086,70145,70171,70183,70188,70235,70244,70275,70281 via svnmerge from by Benjamin Peterson · 16 years ago
  22. 07c0a75 Blocked revisions 70261,70267,70271,70273 via svnmerge by Benjamin Peterson · 16 years ago
  23. 9c751b7 Fix some reST mishaps. by Brett Cannon · 16 years ago
  24. 1d7f4b2 Add cross-reference to the collections docs. by Raymond Hettinger · 16 years ago
  25. fa00796 Add consume() recipe to itertools docs. by Raymond Hettinger · 16 years ago
  26. 5fa5d4f Issue 5443: Fix typo. by Raymond Hettinger · 16 years ago
  27. e2085be Clean up importlib NOTES so it only contains short term goals. by Brett Cannon · 16 years ago
  28. ad876c7 Clarify an assumption that importlib.abc.PyLoader makes when importing a by Brett Cannon · 16 years ago
  29. 2a922ed Introduce importlib.abc. The module contains various ABCs related to imports by Brett Cannon · 16 years ago
  30. aa1c8d8 fix StringIO constructor docs #5452 by Benjamin Peterson · 16 years ago
  31. ba3fcf1 Remove a dead XXX comment. by Brett Cannon · 16 years ago
  32. 29dff8a Fix importlib._bootstrap.PyPycLoader.load_module() to better handle by Brett Cannon · 16 years ago
  33. 9fd459a hack StringIO's repr, so it doesn't give an encoding by Benjamin Peterson · 16 years ago
  34. c4c0eae give TextIOWrapper a repr that tells you the encoding by Benjamin Peterson · 16 years ago
  35. f2b55fb Make importlib.test.source.util.write_bytecode reset sys.dont_write_bytecode. by Brett Cannon · 16 years ago
  36. e866206 PyObject_Unicode -> PyObject_Str by Benjamin Peterson · 16 years ago
  37. 1014d42 Minor changes to Python source base loader. by Brett Cannon · 16 years ago
  38. 79925fd Skip case-sensitivity tests for extension modules if _testcapi cannot be found. by Brett Cannon · 16 years ago
  39. 3c2ac44 Fix a typo in a comment. by Brett Cannon · 16 years ago
  40. ec00e2f Add notice about strange behaviour of the bigmem tests by Antoine Pitrou · 16 years ago
  41. 7cdb495 Issue #3700: make test_bigmem py3k-compatible, and add bytes/bytearray tests by Antoine Pitrou · 16 years ago
  42. d173589 let's get cracking on 3.1a2! by Benjamin Peterson · 16 years ago
  43. 66b6802 tag 3.1a1 by Benjamin Peterson · 16 years ago
  44. a58a626 bump version to 3.1a1 by Benjamin Peterson · 16 years ago
  45. ee456de update rpm filename by Benjamin Peterson · 16 years ago
  46. 47aa989 Redocument the empty() and full() methods. by Raymond Hettinger · 16 years ago
  47. f45b4cc Merged revisions 70223 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 16 years ago
  48. 56f5be5 Merged revisions 70218-70219 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 16 years ago
  49. b3c6ed5 fixed except syntax for py3 by Tarek Ziadé · 16 years ago
  50. 63b64c0 Merged revisions 70212 via svnmerge from by Tarek Ziadé · 16 years ago
  51. 113f607 simplify and beautify code by Benjamin Peterson · 16 years ago
  52. 0e94189 Remove double negative by Antoine Pitrou · 16 years ago
  53. 611eaf0 Document the suggested alternative to emtpy() and full(). by Raymond Hettinger · 16 years ago
  54. 66913e2 Issue #5433: Excessive newline detection optimization in IncrementalNewlineDecoder by Antoine Pitrou · 16 years ago
  55. 2db74c2 Issue #5429: unaligned access in TextIOWrapper cookie parsing (segfaults on SPARC CPUs, and possibly others) by Antoine Pitrou · 16 years ago
  56. 54d0df6 Issue #5334: array.fromfile() failed to insert values when EOFError was raised. by Hirokazu Yamamoto · 16 years ago
  57. 3aed8d5 Blocked revisions 70166-70167,70169,70176,70178,70197 via svnmerge by Benjamin Peterson · 16 years ago
  58. 394ee00 remove usage of the deprecated max_buffer_size by Benjamin Peterson · 16 years ago
  59. 36a30ce properly export PyExc_BlockingIOError by Benjamin Peterson · 16 years ago
  60. 9b78925 Merged revisions 70193 via svnmerge from by Hirokazu Yamamoto · 16 years ago
  61. 8e722bc Merged revisions 70189 via svnmerge from by Hirokazu Yamamoto · 16 years ago
  62. 9a8082f FileIO.readinto() isn't going anywhere by Benjamin Peterson · 16 years ago
  63. 5ac89cc rather pointless XXX by Benjamin Peterson · 16 years ago
  64. 5fd871d rename by Benjamin Peterson · 16 years ago
  65. 9363a65 fix #4862 in _pyio: reset the decoder on seek(0) by Benjamin Peterson · 16 years ago
  66. 03cfa73 These are present in the trunk but no longer in 3.x, which causes problems by Ronald Oussoren · 16 years ago
  67. 8954cd3 Fix for issue #5408. This only enables test_osx_env when the current build by Ronald Oussoren · 16 years ago
  68. 5f734f1 Merged revisions 70172 via svnmerge from by Ronald Oussoren · 16 years ago
  69. 435aad8 Rename importlib.util.set___package__ to set_package. by Brett Cannon · 16 years ago
  70. 1fcadce Fix failures introduced by buggy merge (2) by Antoine Pitrou · 16 years ago
  71. 7fb111b Fix failures introduced by buggy merge (1) by Antoine Pitrou · 16 years ago
  72. abaf78e Removed merge tracking for "svnmerge" for by Benjamin Peterson · 16 years ago
  73. da4cb8e Update project file. by Raymond Hettinger · 16 years ago
  74. 4f447fb Issue #5273: Fixed import failure on unicode path. (especially on windows) by Hirokazu Yamamoto · 16 years ago
  75. 7c9875c Move importlib over to _io. by Brett Cannon · 16 years ago
  76. 771ae96 Blocked revisions 70153 via svnmerge by Brett Cannon · 16 years ago
  77. b5f03c6 Add a test for importlib.import_module. by Brett Cannon · 16 years ago
  78. 4fa88fa merge the io-c branch: C implementation of the io module by Benjamin Peterson · 16 years ago
  79. 03ad812 Initialized merge tracking via "svnmerge" with revisions "1-68679" from by Benjamin Peterson · 16 years ago
  80. b6b76cc Blocked revisions 70149 via svnmerge by Benjamin Peterson · 16 years ago
  81. 62f71b0 don't bother with version in doc builds by Benjamin Peterson · 16 years ago
  82. b212157 Additional test for __reduce__. by Raymond Hettinger · 16 years ago
  83. 89194ff Now that __keys are fully hidden, switch the underlying structure by Raymond Hettinger · 16 years ago
  84. 0c98817 Merged revisions 70137 via svnmerge from by Hirokazu Yamamoto · 16 years ago
  85. 5b26fb5 Add another test. by Raymond Hettinger · 16 years ago
  86. 14b89ff Fix-up __reduce__ which could not reach the __keys variable indirectly.' by Raymond Hettinger · 16 years ago
  87. 9a572ba Blocked revisions 70136 via svnmerge by Hirokazu Yamamoto · 16 years ago
  88. 4644d18 Blocked revisions 70081,70120-70123,70126,70131-70132 via svnmerge by Benjamin Peterson · 16 years ago
  89. 08c70cf Make the underlying data structure more private. by Raymond Hettinger · 16 years ago
  90. b0d56af Give dict views a helpful __repr__. by Raymond Hettinger · 16 years ago
  91. ce57cdb Blocked revisions 70119 via svnmerge by Hirokazu Yamamoto · 16 years ago
  92. 8404749 Fixed memory leak on failure. This is related to issue5403 but won't crash on py3k. by Hirokazu Yamamoto · 16 years ago
  93. 45ed72d Issue5407 Broken Py3.1 release build in Visual Studio 2005 by Kristján Valur Jónsson · 16 years ago
  94. a88e4da Fix markup. by Raymond Hettinger · 16 years ago
  95. ff23e8c Fix bootstrapping problem where setup.py was using configparser by Raymond Hettinger · 16 years ago
  96. dcaf329 instead of hacking __locals__ in during bytecode generation, put it in the symtable by Benjamin Peterson · 16 years ago
  97. 231b7f1 Fix markup. by Raymond Hettinger · 16 years ago
  98. b5be6d4 re-merge r69268 (issue4804) from trunk: by Amaury Forgeot d'Arc · 16 years ago
  99. f5b5224 ignore the coding cookie in compile(), exec(), and eval() if the source is a string #4626 by Benjamin Peterson · 16 years ago
  100. 0663a1e Let configparser use ordered dicts by default. by Raymond Hettinger · 16 years ago