1. 22db67e Minor NOTES changes for importlib. by Brett Cannon · 16 years ago
  2. 33dbf46 Outline a possible way to separate out source loading from bytecode loading. by Brett Cannon · 16 years ago
  3. d2e7b33 Implement the more specific PEP 302 semantics for loaders and what happens upon by Brett Cannon · 16 years ago
  4. debb98d Document importlib.machinery.PathFinder. by Brett Cannon · 16 years ago
  5. 32732e3 Change importlib.machinery.PathFinder to not have implicit semantics (that's by Brett Cannon · 16 years ago
  6. 4b4a4a5 Add a NOTE about the new specific semantics for failed loads. by Brett Cannon · 16 years ago
  7. c1761b7 Add a NOTE that alternative VMs should be supported by importlib in a nicer by Brett Cannon · 16 years ago
  8. 7bf8d4e Add the missing importlib.test.extension.util. by Brett Cannon · 16 years ago
  9. b2071f8 Update NOTES for importlib now that a replacement for functools.wraps is by Brett Cannon · 16 years ago
  10. 51d8bfc Create a simple substitute for functools.wraps to use in importlib._bootstrap. by Brett Cannon · 16 years ago
  11. 534b2cd Factor out helper code from importlib.test.extension.test_path_hook. by Brett Cannon · 16 years ago
  12. 36d1f3e Add a note for importlib about backporting some of functools.wraps functionality. by Brett Cannon · 16 years ago
  13. 06c9d96 Move importlib completely over to using rpartition and accepting the empty by Brett Cannon · 16 years ago
  14. d94e558 Move importlib's built-in importer to use rpartition for __package__. by Brett Cannon · 16 years ago
  15. eb2e0dd Move importlib's frozen importer over to rpartition for setting __package__. by Brett Cannon · 16 years ago
  16. 2c318a1 Rewrite the code implementing __import__ for importlib. Now it is much simpler by Brett Cannon · 16 years ago
  17. 7f9876c Initial, untested stab at writing a common denominator function for __import__ by Brett Cannon · 16 years ago
  18. 6411aa5 Finish implementing tests for importlib.machinery.PathFinder by testing that by Brett Cannon · 16 years ago
  19. 1f9bcd3 Add tests for using sys.path_hooks by importlib.machinery.PathFinder. by Brett Cannon · 16 years ago
  20. 48f5c4ee Implement test for sys.path_importer_cache having None for by Brett Cannon · 16 years ago
  21. 64a3a65 Update NOTES for importlib about PathFinder. by Brett Cannon · 16 years ago
  22. 939ea76 Begin writing tests for importlib.machinery.PathFinder. by Brett Cannon · 16 years ago
  23. fa3d1fc Check in the fact that importlib.machinery.PathFinder now exists. by Brett Cannon · 16 years ago
  24. f7e5a8c Rename importlib._bootstrap.SysPathFinder to PathFinder and expose off of by Brett Cannon · 16 years ago
  25. 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
  26. 1d37668 To prevent another screw-up on my part where my prototype gets lost thanks to by Brett Cannon · 16 years ago
  27. 02a6888 Note to move __package__ stuff over to rpartition to make Nick happy. Also make by Brett Cannon · 16 years ago
  28. 776e701 Simplify write_bytecode for importlib. by Brett Cannon · 16 years ago
  29. 20b56e1 Update importlib notes. by Brett Cannon · 16 years ago
  30. ba96f0f Ditch read_source() and read_bytecode() and replace with *_path() and by Brett Cannon · 16 years ago
  31. 51c5026 Expose source_path and bytecode_path on _PyFileLoader. by Brett Cannon · 16 years ago
  32. 6c3aaf3 Remove an outdated todo item from importlib. by Brett Cannon · 16 years ago
  33. d720b36 Move import semantic util code to importlib.test.import_.util. by Brett Cannon · 16 years ago
  34. bcb26c5 Rename importlib.test.support to importlib.test.util. by Brett Cannon · 16 years ago
  35. ae9ad18 Do not execute the .pyc/.pyo files as well as the .py files. by Brett Cannon · 16 years ago
  36. 4ee2cda Split out support code that is specific to source tests out of by Brett Cannon · 16 years ago
  37. 30b047d Move source loader tests (including reload tests) over to by Brett Cannon · 16 years ago
  38. 223a19d Fix importlib.machinery.FrozenImporter.load_module() to set __package__ by Brett Cannon · 16 years ago
  39. e70485e Move extension module loader tests over to importlib.test.abc.LoaderTests. by Brett Cannon · 16 years ago
  40. d98a6a0 Move built-in loader tests to importlib.test.abc.LoaderTests. by Brett Cannon · 16 years ago
  41. f254a75 Merge testing ABCs for importlib into importlib.test.abc. by Brett Cannon · 16 years ago
  42. a74ccea Initial take on importlib.test.loader_tests. by Brett Cannon · 16 years ago
  43. dd827c4 Update importlib NOTES. by Brett Cannon · 16 years ago
  44. d197a2b Move importlib.test.frozen.test_finder over to importlib.test.finder_tests. by Brett Cannon · 16 years ago
  45. 1d0b43d Move importlib.test.builtin.test_finder over to importlib.test.finder_tests. by Brett Cannon · 16 years ago
  46. 97c8a07 Make importlib.test.finder_tests an ABC. by Brett Cannon · 16 years ago
  47. c49715f Move importlib.test.extension.test_finder over to importlib.test.finder_tests. by Brett Cannon · 16 years ago
  48. d0005ff Update NOTES for importlib. by Brett Cannon · 16 years ago
  49. 78246b6 Document both importlib.machinery.BuiltinImporter and FrozenImporter. by Brett Cannon · 16 years ago
  50. 7f400e1 Add some comment markers to more clearly delineate what different parts of the by Brett Cannon · 16 years ago
  51. 5abdc93 Add importlib.machinery with its first tenants, BuitinImporter and by Brett Cannon · 16 years ago
  52. afccd63 Document the (very small) public API for importlib. As time goes on and some by Brett Cannon · 16 years ago
  53. d994864 Remove a debugging print statement that accidentally got left in. by Brett Cannon · 16 years ago
  54. b4a1b8c Fix a typo in some code that is not tested or supported yet. by Brett Cannon · 16 years ago
  55. 2c5c79c Tests of case-sensitivity were being executed on OSs which did not have a by Brett Cannon · 16 years ago
  56. 24b6a2c NOTES for importlib should mention the ultimate end-goal for the package. by Brett Cannon · 16 years ago
  57. 7044d6b Skip over any file or folder that starts with a dot (e.g. .svn). by Brett Cannon · 16 years ago
  58. 23cbd8a Add initial implementation of importlib. See the NOTES files for what is by Brett Cannon · 16 years ago