1. 1c62dc9 Tweak the docs for Counter() objects. by Raymond Hettinger · 15 years ago
  2. d943262 Merged revisions 69260 via svnmerge from by Thomas Heller · 15 years ago
  3. 3bbfba8 r69209 caused the fp of HTTPResponse objects to be a io.BufferedReader instead of a socket.SocketIO. This moves the underlying socket.socket object from r.fp._sock to r.fp.raw._sock. Since _sock is an internal object, this should be ok. The change is for the testsuite only, to assert socket state. by Kristján Valur Jónsson · 15 years ago
  4. 0e974b8 Blocked revisions 69252 via svnmerge by Brett Cannon · 15 years ago
  5. e78701a Add importlib to the Makefile. by Brett Cannon · 15 years ago
  6. 8560226 The default shelve pickle protocol should have been 3. by Raymond Hettinger · 15 years ago
  7. f6e1806 Blocked revisions 69242 via svnmerge by Benjamin Peterson · 15 years ago
  8. 82417ca Register decimals as numbers.Number by Raymond Hettinger · 15 years ago
  9. 2fad801 Blocked revisions 69237 via svnmerge by Benjamin Peterson · 15 years ago
  10. 5d65412 Validate that __length_hint__ returns a usable result. by Raymond Hettinger · 15 years ago
  11. 94a45da Blocked revisions 68532,69161,69227 via svnmerge by Benjamin Peterson · 15 years ago
  12. e836423 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 15 years ago
  13. 9f98926 Issue #1717, continued: Doc fixes and other cleanup related by Mark Dickinson · 15 years ago
  14. 7f42395 Merged revisions 69217,69219 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 15 years ago
  15. 3c16165 Change type of tp_reserved from cmpfunc to (void *); remove definition by Mark Dickinson · 15 years ago
  16. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  17. 438cecd Add some notes for importlib to package up what is in Python 2.7 as well as modules that can probably get replaced by importlib at some point. by Brett Cannon · 15 years ago
  18. 1d37668 To prevent another screw-up on my part where my prototype gets lost thanks to by Brett Cannon · 15 years ago
  19. 7e11b3f merging / reimplementing r68532 from the trunk to Py3k by Kristján Valur Jónsson · 15 years ago
  20. bc186a8 Merged revisions 69205 via svnmerge from by Martin v. Löwis · 15 years ago
  21. 49db063 Merged revisions 69200 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  22. 02a6888 Note to move __package__ stuff over to rpartition to make Nick happy. Also make by Brett Cannon · 15 years ago
  23. 8ec5829 Recorded merge of revisions 69195 via svnmerge from by Guilherme Polo · 15 years ago
  24. 995d4cd Remove exception for non-NULL tp_compare that was introduced in r69188. by Mark Dickinson · 15 years ago
  25. c48d834 Issue #1717: documentation fixes related to the cmp removal. by Mark Dickinson · 15 years ago
  26. c008a17 Issue #1717, continued: remove PyObject_Compare and Py_CmpToRich declarations by Mark Dickinson · 15 years ago
  27. f02e0aa Issue #1717: remove the cmp builtin function, the C-API functions by Mark Dickinson · 15 years ago
  28. 211c625 Issue #1717, stage 2: remove uses of tp_compare in Modules and most Objects. by Mark Dickinson · 15 years ago
  29. 776e701 Simplify write_bytecode for importlib. by Brett Cannon · 15 years ago
  30. 20b56e1 Update importlib notes. by Brett Cannon · 15 years ago
  31. ba96f0f Ditch read_source() and read_bytecode() and replace with *_path() and by Brett Cannon · 15 years ago
  32. 51c5026 Expose source_path and bytecode_path on _PyFileLoader. by Brett Cannon · 15 years ago
  33. 6c3aaf3 Remove an outdated todo item from importlib. by Brett Cannon · 15 years ago
  34. d720b36 Move import semantic util code to importlib.test.import_.util. by Brett Cannon · 15 years ago
  35. bcb26c5 Rename importlib.test.support to importlib.test.util. by Brett Cannon · 15 years ago
  36. ae9ad18 Do not execute the .pyc/.pyo files as well as the .py files. by Brett Cannon · 15 years ago
  37. 4ee2cda Split out support code that is specific to source tests out of by Brett Cannon · 15 years ago
  38. 30b047d Move source loader tests (including reload tests) over to by Brett Cannon · 15 years ago
  39. 223a19d Fix importlib.machinery.FrozenImporter.load_module() to set __package__ by Brett Cannon · 15 years ago
  40. e70485e Move extension module loader tests over to importlib.test.abc.LoaderTests. by Brett Cannon · 15 years ago
  41. d98a6a0 Move built-in loader tests to importlib.test.abc.LoaderTests. by Brett Cannon · 15 years ago
  42. fa6cf39 documentation wording fix for issue4903 by Gregory P. Smith · 15 years ago
  43. 548a4cb Blocked revisions 69146,69149 via svnmerge by Benjamin Peterson · 15 years ago
  44. 2906064 fix indentation again by Benjamin Peterson · 15 years ago
  45. e1c3729 Blocked revisions 69134 via svnmerge by Benjamin Peterson · 15 years ago
  46. 14339b6 detabify Objects/unicodeobject.c by Benjamin Peterson · 15 years ago
  47. 72ead17 Make Python/makeopcodetargets runnable with Python 2.3. With any luck, this by Mark Dickinson · 15 years ago
  48. e9deddb comprehrensions now have proper scoping #5106 by Benjamin Peterson · 15 years ago
  49. 1010bf3 Merged revisions 68840,68881,68943,68945 via svnmerge from by Benjamin Peterson · 15 years ago
  50. c4bbc8d Merged revisions 68884,68973,68978,69003,69083,69112-69113 via svnmerge from by Benjamin Peterson · 15 years ago
  51. 90eaaf6 Issue #5041: Fixed memory leak. by Hirokazu Yamamoto · 15 years ago
  52. 5276c64 Blocked revisions 68772,68892,69039 via svnmerge by Benjamin Peterson · 15 years ago
  53. e8fcbf6 fix a case of set_daemon #5087 by Benjamin Peterson · 15 years ago
  54. e61426e The trace module was trying to turn ints into ints since co_lnotab was changed by Brett Cannon · 15 years ago
  55. f254a75 Merge testing ABCs for importlib into importlib.test.abc. by Brett Cannon · 15 years ago
  56. b18b936 Merged revisions 69106 via svnmerge from by Tarek Ziadé · 15 years ago
  57. 7fc0dd7 Fix error in docs. The source says proto 2 is the default. by Raymond Hettinger · 15 years ago
  58. 0dcc3cd Merged revisions 69100 via svnmerge from by Antoine Pitrou · 15 years ago
  59. 891f263 Fix issue5076: bdist_wininst fails on py3k by Mark Hammond · 15 years ago
  60. 6d0e975 Merged revisions 69094 via svnmerge from by Mark Hammond · 15 years ago
  61. e1327f7 Merged revisions 69078-69080 via svnmerge from by Brett Cannon · 15 years ago
  62. 19f8bd2 Blocked revisions 69085,69087 via svnmerge by Benjamin Peterson · 15 years ago
  63. 811f3dc Fix typo. by Raymond Hettinger · 15 years ago
  64. 3522a58 Update itertools.__doc__ to include all tools. by Raymond Hettinger · 15 years ago
  65. 32b5bb6 Blocked revisions 68521 via svnmerge by Benjamin Peterson · 15 years ago
  66. 0b6f896 Blocked revisions 69070,69074 via svnmerge by Benjamin Peterson · 15 years ago
  67. d23e013 Correct docs for ABCs (MutableSequence was missing __setiem). Simplify the table by taking out inherited requirements for abstract methods. by Raymond Hettinger · 15 years ago
  68. ae65018 Beef-up tests for collections ABCs. by Raymond Hettinger · 15 years ago
  69. 1124e71 Issue #4707: round(x, n) now returns an integer when x is an integer. by Mark Dickinson · 15 years ago
  70. 9de29af Merged revisions 69060-69063 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 15 years ago
  71. a7d2797 Merged revisions 69053 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 15 years ago
  72. 5f23848 Merged revisions 69050 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 15 years ago
  73. 9844a1f Merged revisions 69038 via svnmerge from by Mark Hammond · 15 years ago
  74. 4fcc4cf Blocked revisions 69001,69010,69012,69014,69018,69023 via svnmerge by Benjamin Peterson · 15 years ago
  75. c429a83 Fix an occurrence of cmp that was missed in r69025 by Mark Dickinson · 15 years ago
  76. a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 15 years ago
  77. 191e850 Add more tests for the powerset() recipe. by Raymond Hettinger · 15 years ago
  78. 3471b1c Resurrect two buffer tests, converting irepeat() to imul(). Undoes part of r68962. by Raymond Hettinger · 15 years ago
  79. 957929f Add executable property to Python/makeopcodetargets.py by Antoine Pitrou · 15 years ago
  80. da6bc52 More exhaustive combinatoric checks. by Raymond Hettinger · 15 years ago
  81. 0f05517 Issue 5021: doctest.testfile should set __name__ by Raymond Hettinger · 15 years ago
  82. d17ad8d Stronger tests for combinatoric relationships. by Raymond Hettinger · 15 years ago
  83. eb508ad Add tests to verify combinatoric relationships. by Raymond Hettinger · 15 years ago
  84. 883d276 Beautify grouper() recipe in docs. by Raymond Hettinger · 15 years ago
  85. 749761e Put functions back in alphabetical order. by Raymond Hettinger · 15 years ago
  86. d07d939 Forward port r69001: itertools.combinations_with_replacement(). by Raymond Hettinger · 15 years ago
  87. dd1b33a Blocked revisions 68998 via svnmerge by Benjamin Peterson · 15 years ago
  88. a74ccea Initial take on importlib.test.loader_tests. by Brett Cannon · 15 years ago
  89. 73662a5 Tweak column alignment in collections docs. by Raymond Hettinger · 15 years ago
  90. 2953bd4 Blocked revisions 68964,68985 via svnmerge by Benjamin Peterson · 15 years ago
  91. dd827c4 Update importlib NOTES. by Brett Cannon · 15 years ago
  92. d197a2b Move importlib.test.frozen.test_finder over to importlib.test.finder_tests. by Brett Cannon · 15 years ago
  93. 1d0b43d Move importlib.test.builtin.test_finder over to importlib.test.finder_tests. by Brett Cannon · 15 years ago
  94. 97c8a07 Make importlib.test.finder_tests an ABC. by Brett Cannon · 15 years ago
  95. c49715f Move importlib.test.extension.test_finder over to importlib.test.finder_tests. by Brett Cannon · 15 years ago
  96. a2a8e8b Forward port r68985: Idle startup message. by Raymond Hettinger · 15 years ago
  97. 39df610 Fix test so as to also pass in debug mode by Antoine Pitrou · 15 years ago
  98. a5cafdf Merged revisions 68974-68975 via svnmerge from by Mark Dickinson · 15 years ago
  99. 27fe9fc Followup of #4705: we can't skip the binary buffering layer for stdin because FileIO doesn't have a read1() method by Antoine Pitrou · 15 years ago
  100. 0302cf5 Merged revisions 68951 via svnmerge from by Tarek Ziadé · 15 years ago