1. b49c70c Importlib was using custom code to discover all test modules in importlib.test. by Brett Cannon · 15 years ago
  2. 9b2611e Remove unused import for function that no longer exists. by R. David Murray · 15 years ago
  3. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  4. 554290d Fixup/simplify another nested context manager. by Raymond Hettinger · 15 years ago
  5. 1262e7c Tests for case-senstivity were not being skipped for darwin when installed on a by Brett Cannon · 15 years ago
  6. 3c33b83 fix name again by Benjamin Peterson · 16 years ago
  7. 3e0c917 fix name by Benjamin Peterson · 16 years ago
  8. 309633d fix naming by Benjamin Peterson · 16 years ago
  9. 8d55a9e os.path.listdir -> os.listdir by Benjamin Peterson · 16 years ago
  10. 5561982 importlib.test.source.test_abc_loader was making a bad assumption that all file by Brett Cannon · 16 years ago
  11. f86213f Make a test in importlib have a more robust test value. by Brett Cannon · 16 years ago
  12. 978259e Give a more informative message on an importlib test upon failure. by Brett Cannon · 16 years ago
  13. a3d056e Check that on a platform that is expected to have a case-insensitive filesystem by Brett Cannon · 16 years ago
  14. 12e533d Rip out a useless method that the superclass implements properly. by Brett Cannon · 16 years ago
  15. 8593a75 Fix importlib.machinery.PathFinder.find_module() to essentially skip over None by Brett Cannon · 16 years ago
  16. 6ae7a7d Add simple tests for __import__ for future optimizations to importlib. by Brett Cannon · 16 years ago
  17. e43b060 Document import's semantics for the language reference. This includes filling by Brett Cannon · 16 years ago
  18. 8d11013 Implement InspectLoader for FrozenImporter. by Brett Cannon · 16 years ago
  19. a113ac5 Implement InspectLoader for BuiltinImporter. by Brett Cannon · 16 years ago
  20. 7aa21f7 A few more docstring/API cleanups for importlib. by Brett Cannon · 16 years ago
  21. 0e0d8a6 Clean up docstring from importlib.util.module_for_loader. by Brett Cannon · 16 years ago
  22. f87e04d Finish properly hiding importlib implementation code. by Brett Cannon · 16 years ago
  23. 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
  24. ce43ddf Do a little bit of reorganization on importlib._bootstrap. by Brett Cannon · 16 years ago
  25. 3eeaa0a Make utility code in importlib._bootstrap private. by Brett Cannon · 16 years ago
  26. 9495f18 Define importlib.__init__.__all__. by Brett Cannon · 16 years ago
  27. c59cd68 Add a NOTE for importlib to fill in the docstrings for the ABCs. by Brett Cannon · 16 years ago
  28. 2cf03a8 Implement importlib.util.set_loader: a decorator to automatically set by Brett Cannon · 16 years ago
  29. d43b30b Implement get_source for importlib.abc.PyLoader using source_path and get_data. by Brett Cannon · 16 years ago
  30. e2085be Clean up importlib NOTES so it only contains short term goals. by Brett Cannon · 16 years ago
  31. 2a922ed Introduce importlib.abc. The module contains various ABCs related to imports by Brett Cannon · 16 years ago
  32. ba3fcf1 Remove a dead XXX comment. by Brett Cannon · 16 years ago
  33. 29dff8a Fix importlib._bootstrap.PyPycLoader.load_module() to better handle by Brett Cannon · 16 years ago
  34. f2b55fb Make importlib.test.source.util.write_bytecode reset sys.dont_write_bytecode. by Brett Cannon · 16 years ago
  35. 1014d42 Minor changes to Python source base loader. by Brett Cannon · 16 years ago
  36. 79925fd Skip case-sensitivity tests for extension modules if _testcapi cannot be found. by Brett Cannon · 16 years ago
  37. 435aad8 Rename importlib.util.set___package__ to set_package. by Brett Cannon · 16 years ago
  38. 7c9875c Move importlib over to _io. by Brett Cannon · 16 years ago
  39. b5f03c6 Add a test for importlib.import_module. by Brett Cannon · 16 years ago
  40. 4fa88fa merge the io-c branch: C implementation of the io module by Benjamin Peterson · 16 years ago
  41. 57b46f5 Expose importlib.util.set___package__. by Brett Cannon · 16 years ago
  42. 94aaf9e Relocate source_mtime in importlib to PyPycLoader. by Brett Cannon · 16 years ago
  43. 91cf882 Refactor source and bytecode file loaders in importlib so that there by Brett Cannon · 16 years ago
  44. 0515619 Tweak the source/bytecode loader from importlib to use more of the PEP 302 by Brett Cannon · 16 years ago
  45. 4afab6b Separate out finder for source and source/bytecode. by Brett Cannon · 16 years ago
  46. 2dee597 Do some cleanup in importlib: by Brett Cannon · 16 years ago
  47. a2fcb1d Add some notes about importlib and some API exposure cleanup. by Brett Cannon · 16 years ago
  48. 22db67e Minor NOTES changes for importlib. by Brett Cannon · 16 years ago
  49. 33dbf46 Outline a possible way to separate out source loading from bytecode loading. by Brett Cannon · 16 years ago
  50. d2e7b33 Implement the more specific PEP 302 semantics for loaders and what happens upon by Brett Cannon · 16 years ago
  51. debb98d Document importlib.machinery.PathFinder. by Brett Cannon · 16 years ago
  52. 32732e3 Change importlib.machinery.PathFinder to not have implicit semantics (that's by Brett Cannon · 16 years ago
  53. 4b4a4a5 Add a NOTE about the new specific semantics for failed loads. by Brett Cannon · 16 years ago
  54. c1761b7 Add a NOTE that alternative VMs should be supported by importlib in a nicer by Brett Cannon · 16 years ago
  55. 7bf8d4e Add the missing importlib.test.extension.util. by Brett Cannon · 16 years ago
  56. b2071f8 Update NOTES for importlib now that a replacement for functools.wraps is by Brett Cannon · 16 years ago
  57. 51d8bfc Create a simple substitute for functools.wraps to use in importlib._bootstrap. by Brett Cannon · 16 years ago
  58. 534b2cd Factor out helper code from importlib.test.extension.test_path_hook. by Brett Cannon · 16 years ago
  59. 36d1f3e Add a note for importlib about backporting some of functools.wraps functionality. by Brett Cannon · 16 years ago
  60. 06c9d96 Move importlib completely over to using rpartition and accepting the empty by Brett Cannon · 16 years ago
  61. d94e558 Move importlib's built-in importer to use rpartition for __package__. by Brett Cannon · 16 years ago
  62. eb2e0dd Move importlib's frozen importer over to rpartition for setting __package__. by Brett Cannon · 16 years ago
  63. 2c318a1 Rewrite the code implementing __import__ for importlib. Now it is much simpler by Brett Cannon · 16 years ago
  64. 7f9876c Initial, untested stab at writing a common denominator function for __import__ by Brett Cannon · 16 years ago
  65. 6411aa5 Finish implementing tests for importlib.machinery.PathFinder by testing that by Brett Cannon · 16 years ago
  66. 1f9bcd3 Add tests for using sys.path_hooks by importlib.machinery.PathFinder. by Brett Cannon · 16 years ago
  67. 48f5c4ee Implement test for sys.path_importer_cache having None for by Brett Cannon · 16 years ago
  68. 64a3a65 Update NOTES for importlib about PathFinder. by Brett Cannon · 16 years ago
  69. 939ea76 Begin writing tests for importlib.machinery.PathFinder. by Brett Cannon · 16 years ago
  70. fa3d1fc Check in the fact that importlib.machinery.PathFinder now exists. by Brett Cannon · 16 years ago
  71. f7e5a8c Rename importlib._bootstrap.SysPathFinder to PathFinder and expose off of by Brett Cannon · 16 years ago
  72. 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
  73. 1d37668 To prevent another screw-up on my part where my prototype gets lost thanks to by Brett Cannon · 16 years ago
  74. 02a6888 Note to move __package__ stuff over to rpartition to make Nick happy. Also make by Brett Cannon · 16 years ago
  75. 776e701 Simplify write_bytecode for importlib. by Brett Cannon · 16 years ago
  76. 20b56e1 Update importlib notes. by Brett Cannon · 16 years ago
  77. ba96f0f Ditch read_source() and read_bytecode() and replace with *_path() and by Brett Cannon · 16 years ago
  78. 51c5026 Expose source_path and bytecode_path on _PyFileLoader. by Brett Cannon · 16 years ago
  79. 6c3aaf3 Remove an outdated todo item from importlib. by Brett Cannon · 16 years ago
  80. d720b36 Move import semantic util code to importlib.test.import_.util. by Brett Cannon · 16 years ago
  81. bcb26c5 Rename importlib.test.support to importlib.test.util. by Brett Cannon · 16 years ago
  82. ae9ad18 Do not execute the .pyc/.pyo files as well as the .py files. by Brett Cannon · 16 years ago
  83. 4ee2cda Split out support code that is specific to source tests out of by Brett Cannon · 16 years ago
  84. 30b047d Move source loader tests (including reload tests) over to by Brett Cannon · 16 years ago
  85. 223a19d Fix importlib.machinery.FrozenImporter.load_module() to set __package__ by Brett Cannon · 16 years ago
  86. e70485e Move extension module loader tests over to importlib.test.abc.LoaderTests. by Brett Cannon · 16 years ago
  87. d98a6a0 Move built-in loader tests to importlib.test.abc.LoaderTests. by Brett Cannon · 16 years ago
  88. f254a75 Merge testing ABCs for importlib into importlib.test.abc. by Brett Cannon · 16 years ago
  89. a74ccea Initial take on importlib.test.loader_tests. by Brett Cannon · 16 years ago
  90. dd827c4 Update importlib NOTES. by Brett Cannon · 16 years ago
  91. d197a2b Move importlib.test.frozen.test_finder over to importlib.test.finder_tests. by Brett Cannon · 16 years ago
  92. 1d0b43d Move importlib.test.builtin.test_finder over to importlib.test.finder_tests. by Brett Cannon · 16 years ago
  93. 97c8a07 Make importlib.test.finder_tests an ABC. by Brett Cannon · 16 years ago
  94. c49715f Move importlib.test.extension.test_finder over to importlib.test.finder_tests. by Brett Cannon · 16 years ago
  95. d0005ff Update NOTES for importlib. by Brett Cannon · 16 years ago
  96. 78246b6 Document both importlib.machinery.BuiltinImporter and FrozenImporter. by Brett Cannon · 16 years ago
  97. 7f400e1 Add some comment markers to more clearly delineate what different parts of the by Brett Cannon · 16 years ago
  98. 5abdc93 Add importlib.machinery with its first tenants, BuitinImporter and by Brett Cannon · 16 years ago
  99. afccd63 Document the (very small) public API for importlib. As time goes on and some by Brett Cannon · 16 years ago
  100. d994864 Remove a debugging print statement that accidentally got left in. by Brett Cannon · 16 years ago