1. 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 · 16 years ago
  2. 1d37668 To prevent another screw-up on my part where my prototype gets lost thanks to by Brett Cannon · 16 years ago
  3. 7e11b3f merging / reimplementing r68532 from the trunk to Py3k by Kristján Valur Jónsson · 16 years ago
  4. 02a6888 Note to move __package__ stuff over to rpartition to make Nick happy. Also make by Brett Cannon · 16 years ago
  5. 8ec5829 Recorded merge of revisions 69195 via svnmerge from by Guilherme Polo · 16 years ago
  6. f02e0aa Issue #1717: remove the cmp builtin function, the C-API functions by Mark Dickinson · 16 years ago
  7. 211c625 Issue #1717, stage 2: remove uses of tp_compare in Modules and most Objects. by Mark Dickinson · 16 years ago
  8. 776e701 Simplify write_bytecode for importlib. by Brett Cannon · 16 years ago
  9. 20b56e1 Update importlib notes. by Brett Cannon · 16 years ago
  10. ba96f0f Ditch read_source() and read_bytecode() and replace with *_path() and by Brett Cannon · 16 years ago
  11. 51c5026 Expose source_path and bytecode_path on _PyFileLoader. by Brett Cannon · 16 years ago
  12. 6c3aaf3 Remove an outdated todo item from importlib. by Brett Cannon · 16 years ago
  13. d720b36 Move import semantic util code to importlib.test.import_.util. by Brett Cannon · 16 years ago
  14. bcb26c5 Rename importlib.test.support to importlib.test.util. by Brett Cannon · 16 years ago
  15. ae9ad18 Do not execute the .pyc/.pyo files as well as the .py files. by Brett Cannon · 16 years ago
  16. 4ee2cda Split out support code that is specific to source tests out of by Brett Cannon · 16 years ago
  17. 30b047d Move source loader tests (including reload tests) over to by Brett Cannon · 16 years ago
  18. 223a19d Fix importlib.machinery.FrozenImporter.load_module() to set __package__ by Brett Cannon · 16 years ago
  19. e70485e Move extension module loader tests over to importlib.test.abc.LoaderTests. by Brett Cannon · 16 years ago
  20. d98a6a0 Move built-in loader tests to importlib.test.abc.LoaderTests. by Brett Cannon · 16 years ago
  21. 1010bf3 Merged revisions 68840,68881,68943,68945 via svnmerge from by Benjamin Peterson · 16 years ago
  22. c4bbc8d Merged revisions 68884,68973,68978,69003,69083,69112-69113 via svnmerge from by Benjamin Peterson · 16 years ago
  23. e61426e The trace module was trying to turn ints into ints since co_lnotab was changed by Brett Cannon · 16 years ago
  24. f254a75 Merge testing ABCs for importlib into importlib.test.abc. by Brett Cannon · 16 years ago
  25. b18b936 Merged revisions 69106 via svnmerge from by Tarek Ziadé · 16 years ago
  26. 0dcc3cd Merged revisions 69100 via svnmerge from by Antoine Pitrou · 16 years ago
  27. 891f263 Fix issue5076: bdist_wininst fails on py3k by Mark Hammond · 16 years ago
  28. 6d0e975 Merged revisions 69094 via svnmerge from by Mark Hammond · 16 years ago
  29. ae65018 Beef-up tests for collections ABCs. by Raymond Hettinger · 16 years ago
  30. 1124e71 Issue #4707: round(x, n) now returns an integer when x is an integer. by Mark Dickinson · 16 years ago
  31. 9de29af Merged revisions 69060-69063 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 16 years ago
  32. 5f23848 Merged revisions 69050 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 16 years ago
  33. c429a83 Fix an occurrence of cmp that was missed in r69025 by Mark Dickinson · 16 years ago
  34. a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 16 years ago
  35. 191e850 Add more tests for the powerset() recipe. by Raymond Hettinger · 16 years ago
  36. 3471b1c Resurrect two buffer tests, converting irepeat() to imul(). Undoes part of r68962. by Raymond Hettinger · 16 years ago
  37. da6bc52 More exhaustive combinatoric checks. by Raymond Hettinger · 16 years ago
  38. 0f05517 Issue 5021: doctest.testfile should set __name__ by Raymond Hettinger · 16 years ago
  39. d17ad8d Stronger tests for combinatoric relationships. by Raymond Hettinger · 16 years ago
  40. eb508ad Add tests to verify combinatoric relationships. by Raymond Hettinger · 16 years ago
  41. 883d276 Beautify grouper() recipe in docs. by Raymond Hettinger · 16 years ago
  42. d07d939 Forward port r69001: itertools.combinations_with_replacement(). by Raymond Hettinger · 16 years ago
  43. a74ccea Initial take on importlib.test.loader_tests. by Brett Cannon · 16 years ago
  44. dd827c4 Update importlib NOTES. by Brett Cannon · 16 years ago
  45. d197a2b Move importlib.test.frozen.test_finder over to importlib.test.finder_tests. by Brett Cannon · 16 years ago
  46. 1d0b43d Move importlib.test.builtin.test_finder over to importlib.test.finder_tests. by Brett Cannon · 16 years ago
  47. 97c8a07 Make importlib.test.finder_tests an ABC. by Brett Cannon · 16 years ago
  48. c49715f Move importlib.test.extension.test_finder over to importlib.test.finder_tests. by Brett Cannon · 16 years ago
  49. a2a8e8b Forward port r68985: Idle startup message. by Raymond Hettinger · 16 years ago
  50. 39df610 Fix test so as to also pass in debug mode by Antoine Pitrou · 16 years ago
  51. 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 · 16 years ago
  52. 0302cf5 Merged revisions 68951 via svnmerge from by Tarek Ziadé · 16 years ago
  53. 6b3b0fc Forward port r68941 adding itertools.compress(). by Raymond Hettinger · 16 years ago
  54. ace6733 Backport r68942: update powerset() recipe. by Raymond Hettinger · 16 years ago
  55. 89e1296 As discussed on python-dev, remove several operator functions by Raymond Hettinger · 16 years ago
  56. d0005ff Update NOTES for importlib. by Brett Cannon · 16 years ago
  57. 3fe61d5 Merged revisions 68933 via svnmerge from by Tarek Ziadé · 16 years ago
  58. 4d4456f Merged revisions 68929 via svnmerge from by Tarek Ziadé · 16 years ago
  59. e6aad75 Merged revisions 68920 via svnmerge from by Mark Dickinson · 16 years ago
  60. 78246b6 Document both importlib.machinery.BuiltinImporter and FrozenImporter. by Brett Cannon · 16 years ago
  61. 41faa54 merge r68915 to py3k by Jesse Noller · 16 years ago
  62. cddcf44 Merged revisions 68903,68906 via svnmerge from by Mark Dickinson · 16 years ago
  63. 3dfe55b Merged revisions 68897 via svnmerge from by Mark Dickinson · 16 years ago
  64. acbf461 Merged revisions 68893 via svnmerge from by Martin v. Löwis · 16 years ago
  65. 59e4779 Merged revisions 68885 via svnmerge from by Martin v. Löwis · 16 years ago
  66. d9aab51 Add a test for UNC import paths, see issue 3677 by Kristján Valur Jónsson · 16 years ago
  67. aa06900 Merged revisions 68750,68776-68777,68811,68842,68859 via svnmerge from by Benjamin Peterson · 16 years ago
  68. 7f400e1 Add some comment markers to more clearly delineate what different parts of the by Brett Cannon · 16 years ago
  69. 5abdc93 Add importlib.machinery with its first tenants, BuitinImporter and by Brett Cannon · 16 years ago
  70. 44bf631 Followup of #4874: also fix multibytecodec.c by Antoine Pitrou · 16 years ago
  71. 81fabdb Issue #4874: Most builtin decoders now reject unicode input. by Antoine Pitrou · 16 years ago
  72. dd01f8f Update comments and add an optimized path for Counter.update(). by Raymond Hettinger · 16 years ago
  73. 670eaec Tighten-up the docs for Counter(). by Raymond Hettinger · 16 years ago
  74. e0d1b9f Simplify explanation of multiset operations by removing restrictions on negative inputs. by Raymond Hettinger · 16 years ago
  75. 63b3a97 merge r68839 forward to py3k by Jesse Noller · 16 years ago
  76. 08838b6 Merged revisions 68835 via svnmerge from by Antoine Pitrou · 16 years ago
  77. 6268cbc Issue 5013: Fixed bug in FileHandler when delay was set - added fix for RotatingFileHandler and changed header comment slightly. by Vinay Sajip · 16 years ago
  78. c123403 Revert part of r68799 which unintentionally updated this file. by Raymond Hettinger · 16 years ago
  79. 9ffc020 Issue 4842, patch 2/2: int('3L') should be invalid in Python 3.x. by Mark Dickinson · 16 years ago
  80. 8dd0514 Issue #4842, patch 1/2: fix pickle in Python 3.x so that pickling with the by Mark Dickinson · 16 years ago
  81. 152b657 Merged revisions 68797,68801 via svnmerge from by Benjamin Peterson · 16 years ago
  82. a0fd888 Issue 4998: Decimal should not subclass or register with numbers.Real. by Raymond Hettinger · 16 years ago
  83. 4d2073a Forward port r68792 and r68789 putting Counter in __all__ and adding Counter buildouts. by Raymond Hettinger · 16 years ago
  84. afccd63 Document the (very small) public API for importlib. As time goes on and some by Brett Cannon · 16 years ago
  85. 7522c74 Merged revisions 68779 via svnmerge from by Benjamin Peterson · 16 years ago
  86. 9053d75 Merged revisions 68763,68773 via svnmerge from by Benjamin Peterson · 16 years ago
  87. 6214edd merge r68768 to py3k by Jesse Noller · 16 years ago
  88. 05e782f reenable the invalid fd test for fdopen by Benjamin Peterson · 16 years ago
  89. 806d402 Merged revisions 68755 via svnmerge from by Benjamin Peterson · 16 years ago
  90. d994864 Remove a debugging print statement that accidentally got left in. by Brett Cannon · 16 years ago
  91. b4a1b8c Fix a typo in some code that is not tested or supported yet. by Brett Cannon · 16 years ago
  92. 18e9512 Merged revisions 68546 via svnmerge from by Benjamin Peterson · 16 years ago
  93. b58dda7 Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 via svnmerge from by Benjamin Peterson · 16 years ago
  94. 9a0fc97 merge cl r68737 to py3k by Jesse Noller · 16 years ago
  95. e1cdfd7 Merged revisions 68547,68607,68610,68618,68621-68622,68649,68722 via svnmerge from by Benjamin Peterson · 16 years ago
  96. 7e15845 Issue #4815: Offer conversion to UTF-8 if source files have by Martin v. Löwis · 16 years ago
  97. 975a079 Issue #4008: Fix problems with non-ASCII source files. by Martin v. Löwis · 16 years ago
  98. f70a538 Issues #10867: remove old cPickle imports from multiprocessing by Jesse Noller · 16 years ago
  99. 2c5c79c Tests of case-sensitivity were being executed on OSs which did not have a by Brett Cannon · 16 years ago
  100. b0516a6 Merge r68708 to py3k, fixes 4449 by Jesse Noller · 16 years ago