1. 6efa50a Issue #14583: Fix importlib bug when a package's __init__.py would first import one of its modules then raise an error. by Antoine Pitrou · 12 years ago
  2. b78174c Fix too early decrefs. by Antoine Pitrou · 12 years ago
  3. 8f46d65 Fix typo in changeset eb5c5c23ca9b. by Nadeem Vawda · 12 years ago
  4. f3a42de Simplify code for load_dynamic() by Antoine Pitrou · 12 years ago
  5. 0429e1a Issue #13959: Move module type constants to Lib/imp.py. by Brett Cannon · 12 years ago
  6. 6b9b727 Remove dead Windows code which no longer will compile. by Brett Cannon · 12 years ago
  7. 2657df4 Issue #13959: Re-implement imp.get_suffixes() in Lib/imp.py. by Brett Cannon · 12 years ago
  8. 62228db Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py. by Brett Cannon · 12 years ago
  9. acf85cd Issue #13959: Re-implement imp.NullImporter in Lib/imp.py. by Brett Cannon · 12 years ago
  10. aa93642 Issue #14605: Use None in sys.path_importer_cache to represent no by Brett Cannon · 12 years ago
  11. 8f82506 Check newly created consistency using _PyUnicode_CheckConsistency(str, 1) by Victor Stinner · 12 years ago
  12. 8923a4d Issue #14605: Insert to the front of sys.path_hooks instead of appending. by Brett Cannon · 12 years ago
  13. e69f0df Issue #13959: Re-implement imp.find_module() in Lib/imp.py. by Brett Cannon · 12 years ago
  14. a64faf0 Issue #13959: Re-implement imp.source_from_cache() in Lib/imp.py. by Brett Cannon · 12 years ago
  15. ea59dbf Issue #13959: Re-implement imp.cache_from_source() in Lib/imp.py. by Brett Cannon · 12 years ago
  16. d76bc7a rollback 005fd1fe31ab (see #14609 and #14582) by Benjamin Peterson · 12 years ago
  17. 64befe9 Issue #13959: Re-implement imp.load_compiled() in imp.py. by Brett Cannon · 12 years ago
  18. 273323c Issue #14592: A relative import will raise a KeyError if __package__ by Brett Cannon · 12 years ago
  19. 09b86d1 Fix #14600. Correct reference handling and naming of ImportError convenience function by Brian Curtin · 12 years ago
  20. 16475ad Issue #13959: Re-implement imp.load_source() in imp.py. by Brett Cannon · 12 years ago
  21. 22a1d17 Fix another refleak by Antoine Pitrou · 12 years ago
  22. 538ba2a Fix a refleak by Antoine Pitrou · 12 years ago
  23. 71382cb Fix reference loss on Py_None when None is encountered in sys.modules. by Antoine Pitrou · 12 years ago
  24. 2ee6142 Issue #13959: Re-implement imp.load_package() in imp.py. by Brett Cannon · 12 years ago
  25. 01a7617 Issue #13959: Re-implement imp.load_module() in imp.py. by Brett Cannon · 12 years ago
  26. 8a1d04c Issue #13959: Simplify imp.reload() by relying on a module's __loader__. by Brett Cannon · 12 years ago
  27. 6f44d66 Issue #13959: Rename imp to _imp and add Lib/imp.py and begin by Brett Cannon · 12 years ago
  28. 881535b Issue #14582: Import returns the module returned by a loader instead by Brett Cannon · 12 years ago
  29. 27fc528 Set ImportError.name when raising the exception in the case of None by Brett Cannon · 12 years ago
  30. 49f8d8b Handle importing pkg.mod by executing by Brett Cannon · 12 years ago
  31. e6b299f Fix Windows build by Brian Curtin · 12 years ago
  32. 740fce0 Undo a C99 idiom. by Brett Cannon · 12 years ago
  33. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  34. f53d20f in 72556ff86828, I should have updated the magic as well as the comment (#14230) by Benjamin Peterson · 12 years ago
  35. abdb552 fix comment by Benjamin Peterson · 12 years ago
  36. 2afe6ae perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) by Benjamin Peterson · 12 years ago
  37. cf1c833 Issue #14084: Fix a file descriptor leak when importing a module with a bad encoding. by Antoine Pitrou · 12 years ago
  38. 4f22a8d Issue #14084: Fix a file descriptor leak when importing a module with a bad encoding. by Antoine Pitrou · 12 years ago
  39. 7214612 In find_module(), do not silence fileno() and dup() errors. by Antoine Pitrou · 12 years ago
  40. a3dd409 Remove now useless arbitrary limit of module name length by Victor Stinner · 13 years ago
  41. 5816166 Port import fixes from 2.7. by Antoine Pitrou · 13 years ago
  42. 33d15f7 Port import fixes from 2.7. by Antoine Pitrou · 13 years ago
  43. abaf89b Issue #11235: Fix OverflowError when trying to import a source file whose modification time doesn't fit in a 32-bit timestamp. by Antoine Pitrou · 13 years ago
  44. 2be60af Issue #11235: Fix OverflowError when trying to import a source file whose modification time doesn't fit in a 32-bit timestamp. by Antoine Pitrou · 13 years ago
  45. 165e01f Fix the builtin module initialization code to store the init function for future reinitialization. by Antoine Pitrou · 13 years ago
  46. 6c40eb7 Fix the builtin module initialization code to store the init function for future reinitialization. by Antoine Pitrou · 13 years ago
  47. 5136ac0 Issue #13645: pyc files now contain the size of the corresponding source by Antoine Pitrou · 13 years ago
  48. 3573476 (Merge 3.2) Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 13 years ago
  49. bd0850b import.c now catchs _Py_stat() exceptions by Victor Stinner · 13 years ago
  50. 1659b83 Followup to a541bda2f5e2: Add a short comment. by Charles-François Natali · 13 years ago
  51. 7c0b0cc Issue #11051: Reduce the number of syscalls per import. by Charles-François Natali · 13 years ago
  52. 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
  53. 1f79517 Catch PyUnicode_AS_UNICODE() errors by Victor Stinner · 13 years ago
  54. 8ad982c Use PyUnicode_FromFormat() to create the temporary file name. by Antoine Pitrou · 13 years ago
  55. 1d8f3f4 Fix regression under Windows following b75b41237380 (from issue #13392) by Antoine Pitrou · 13 years ago
  56. 28e401e Issue #13392: Writing a pyc file should now be atomic under Windows as well. by Antoine Pitrou · 13 years ago
  57. 0c929d9 Issue #13303: Fix bytecode file default permission. by Charles-François Natali · 13 years ago
  58. e640521 Merge follow-up for #11254 and other changes from 3.2 by Éric Araujo · 13 years ago
  59. 5df1108 Add signatures to the docstring of functions added to imp by PEP 3147 by Éric Araujo · 13 years ago
  60. 8db076c Issue #10363: Deallocate global locks in Py_Finalize(). by Antoine Pitrou · 13 years ago
  61. e695eec Issue #13303: Fix a race condition in the bytecode file creation. by Charles-François Natali · 13 years ago
  62. f45dee9 Port import_module_level to Unicode API. by Martin v. Löwis · 13 years ago
  63. 6fbbc33 Issue #10363: Deallocate global locks in Py_Finalize(). by Antoine Pitrou · 13 years ago
  64. 796ea53 Port PyImport_ReloadModule to Unicode API. by Martin v. Löwis · 13 years ago
  65. b528fcf Fix test_imp failure under Windows by Antoine Pitrou · 13 years ago
  66. 9af29d3 Rewrite find_module_path using unicode API. by Martin v. Löwis · 13 years ago
  67. 2cc0cc5 Fix off-by-one error. by Martin v. Löwis · 13 years ago
  68. fadcd31 Drop unused macros. Use CACHEDIR consistently. by Martin v. Löwis · 13 years ago
  69. 8a0ef78 Rewrite make_source_pathname using Unicode API. by Martin v. Löwis · 13 years ago
  70. 30260a7 Add ready checks for make_compiled_pathname. by Martin v. Löwis · 13 years ago
  71. 2db7286 Reformulate make_compiled_pathname in terms of unicode objects. by Martin v. Löwis · 13 years ago
  72. 707033a Issue #13146: Writing a pyc file is now atomic under POSIX. by Antoine Pitrou · 13 years ago
  73. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  74. 8c98189 Fix typo in import.c by Victor Stinner · 13 years ago
  75. beac78b Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE() by Victor Stinner · 13 years ago
  76. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  77. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  78. 46084ba Fix find_module_path(): make the string ready by Victor Stinner · 13 years ago
  79. 014cc42 remove unused label by Benjamin Peterson · 13 years ago
  80. 0b1d348 Issue 13085: Fix some memory leaks. Patch by Stefan Krah. by Martin v. Löwis · 13 years ago
  81. 4cb0de2 Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY"). by Georg Brandl · 13 years ago
  82. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  83. a1fe1f8 Merge 3.2: Issue #7732: Don't open a directory as a file anymore while by Victor Stinner · 13 years ago
  84. 53ffdc5 Issue #7732: Don't open a directory as a file anymore while importing a by Victor Stinner · 13 years ago
  85. 9561d7c import.c: remove now useless arbitrary limit by Victor Stinner · 13 years ago
  86. 84b8e40 Merge 3.2: Fix the import machinery if there is an error on sys.path or sys.meta_path by Victor Stinner · 13 years ago
  87. 1619132 Fix the import machinery if there is an error on sys.path or sys.meta_path by Victor Stinner · 13 years ago
  88. 22d80bc Merge 3.2: Remove unused variable if Python is build without threads by Victor Stinner · 13 years ago
  89. 0af0306 Remove unused variable if Python is build without threads by Victor Stinner · 13 years ago
  90. d417d01 call_find_module() handles dup() failure: raise an OSError exception by Victor Stinner · 13 years ago
  91. 925ef39 find_module_path_list() fails if _Py_fopen() failed and raised an exception by Victor Stinner · 13 years ago
  92. e7c15fa bump magic for super closure change by Benjamin Peterson · 13 years ago
  93. 48deae1 some horrible preprocessing tricks to automatically update the tag by Benjamin Peterson · 13 years ago
  94. 25095b2 Remove useless assignments by Victor Stinner · 13 years ago
  95. 04778a8 make PyImport_ImportModuleLevel's first arg const like similiar functions (closes #12173) by Benjamin Peterson · 13 years ago
  96. 783c82c Close #11619: write_compiled_module() doesn't encode the filename by Victor Stinner · 13 years ago
  97. fe7c5b5 Issue #9319: Include the filename in "Non-UTF8 code ..." syntax error. by Victor Stinner · 13 years ago
  98. 442c9b9 Make importlib compatible with __import__ by "fixing" code.co_filename paths. by Brett Cannon · 13 years ago
  99. e9ddbf6 Issue #11630, issue #3080: Fix refleak introduced by ef2b6305d395 by Victor Stinner · 13 years ago
  100. 9c61e24 Issue #3080: On DJGPP, case_bytes() returns -1 to signal an error if the file by Victor Stinner · 13 years ago