1. c4d974d Remove unused variable `trim_get_code`. by Antoine Pitrou · 12 years ago
  2. 7b3f0fa Close #13119: use "\r\n" newline for sys.stdout/err on Windows by Victor Stinner · 12 years ago
  3. 4941774 Issue #15502: Bring the importlib.PathFinder docs and docstring more in line with the new import system documentation, and fix various parts of the new docs that weren't quite right given PEP 420 or were otherwise a bit misleading. Also note the key terminology problem still being discussed in the issue by Nick Coghlan · 12 years ago
  4. ff79486 Close #15519: Properly expose WindowsRegistryFinder in importlib and bring the name into line with normal import terminology. Original patch by Eric Snow by Nick Coghlan · 12 years ago
  5. 42c0766 Close #15486: Simplify the mechanism used to remove importlib frames from tracebacks when they just introduce irrelevant noise by Nick Coghlan · 12 years ago
  6. d5698cb Fix initialization of the faulthandler module by Victor Stinner · 12 years ago
  7. 722d3ae Issue #15508: Fix the docstring for __import__ to not mention negative by Brett Cannon · 12 years ago
  8. 54f939b Issue #15463: the faulthandler module truncates strings to 500 characters, by Victor Stinner · 12 years ago
  9. 5ee9892 Close #15425: Eliminate more importlib related traceback noise by Nick Coghlan · 12 years ago
  10. e3010a8 Issue #14578: Support modules registered in the Windows registry again. by Martin v. Löwis · 12 years ago
  11. 7e39572 Issue #15466: Stop using TYPE_INT64 in marshal, by Martin v. Löwis · 12 years ago
  12. c5963d3 Issue #15365: Make traceback reporting ignore any errors when printing out by Kristján Valur Jónsson · 12 years ago
  13. 51ab283 remove unused variable by Benjamin Peterson · 12 years ago
  14. 9544aa3 Issue #15368: fixing variable typo. by Meador Inge · 12 years ago
  15. f69e24e Issue #15368: fixing variable typo. by Meador Inge · 12 years ago
  16. 1f336ad Issue #15368: make bytecode generation deterministic. by Meador Inge · 12 years ago
  17. 2ca6315 Issue #15368: make bytecode generation deterministic. by Meador Inge · 12 years ago
  18. b7a5894 Refcounting fixes by Nick Coghlan · 12 years ago
  19. ceda83c Make set_main_loader static (noticed by Antoine Pitrou) by Nick Coghlan · 12 years ago
  20. 2824cb5 Issue #15343: A lot more than just unicode decoding can go wrong when retrieving a source file by Nick Coghlan · 12 years ago
  21. 3f94cbf Actually initialize __main__.__loader__ with loader instances, not the corresponding type objects by Nick Coghlan · 12 years ago
  22. 85e729e Take the first step in resolving the messy pkgutil vs importlib edge cases by basing pkgutil explicitly on importlib, deprecating its internal import emulation and setting __main__.__loader__ correctly so that runpy still works (Affects #15343, #15314, #15357) by Nick Coghlan · 12 years ago
  23. a6473f9 Issues #15169, #14599: Make PyImport_ExecCodeModuleWithPathnames() use by Brett Cannon · 12 years ago
  24. 44b4b6a Fix compilation under Windows by Antoine Pitrou · 12 years ago
  25. 461c813 Issue #15111: When a module was imported using a 'from import' by Brett Cannon · 12 years ago
  26. 66f3659 fix refleak by Benjamin Peterson · 12 years ago
  27. fa87370 initialize variable for compiler happiness by Benjamin Peterson · 12 years ago
  28. 77b2abd Issue #15167 (as part of #13959): imp.get_magic() is no implemented in by Brett Cannon · 12 years ago
  29. 3adc7b7 Issue #15242: Have PyImport_GetMagicTag() return a const char * by Brett Cannon · 12 years ago
  30. 19a2f59 Issue #15056: imp.cache_from_source() and source_from_cache() raise by Brett Cannon · 12 years ago
  31. ae7b8f0 Issue #15110: Also hide importlib frames when importing a builtin module fails. by Amaury Forgeot d'Arc · 12 years ago
  32. 8107176 add gc support to the AST base type (closes #15293) by Benjamin Peterson · 12 years ago
  33. 5075074 Issue #15291: Fix a memory leak where AST nodes where not properly deallocated. by Antoine Pitrou · 12 years ago
  34. bc07a5c Issue #15110: Fix the tracebacks generated by "import xxx" to not show the importlib stack frames. by Antoine Pitrou · 12 years ago
  35. bc1a7dd Check-in compiled importlib changes (you must run "make" after modifying the importlib sources). by Antoine Pitrou · 12 years ago
  36. 74de153 Issue #15020: The program name used to search for Python's path is now python3 under Unix, not python. by Antoine Pitrou · 12 years ago
  37. 01cca5e Issue #15020: The program name used to search for Python's path is now "python3" under Unix, not "python". by Antoine Pitrou · 12 years ago
  38. 98979b8 Issue #15166: Re-implement imp.get_tag() using sys.implementation. by Brett Cannon · 12 years ago
  39. 8a250fa Comment out a dead increment. by Brett Cannon · 12 years ago
  40. 0ab5cf9 Issue #15181: importlib bytecode is unsigned and shouldn't have negative numbers. by Antoine Pitrou · 12 years ago
  41. e51a369 Fixes issue 15039: namespace packages are no longer imported in preference to modules of the same name. by Eric V. Smith · 12 years ago
  42. edc6018 Remove outdated statement by Antoine Pitrou · 12 years ago
  43. 310f95b A better repr() for FileFinder by Antoine Pitrou · 12 years ago
  44. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  45. 7800f75 Issue #15042: Add PyState_AddModule and PyState_RemoveModule. by Martin v. Löwis · 12 years ago
  46. 39378f7 format_obj: make it static by doko@ubuntu.com · 12 years ago
  47. e67f48c Issue #14928: Fix importlib bootstrap issues by using a custom executable (Modules/_freeze_importlib) to build Python/importlib.h. by Antoine Pitrou · 12 years ago
  48. 0006aac Issue #15038: Document caveats with the emulated condition variables. by Kristjan Valur Jonsson · 12 years ago
  49. 1d25b6f Issue #15103: remove the NUL character (serving as a Mercurial binary marker) from Python/importlib.h. by Antoine Pitrou · 12 years ago
  50. 1617077 Issue #15038: by Kristjan Valur Jonsson · 12 years ago
  51. e75ff35 Issue #15038: Optimize python Locks on Windows by Kristján Valur Jónsson · 12 years ago
  52. c40bc09 Issue #13783: the PEP 380 implementation no longer expands the public C API by Nick Coghlan · 12 years ago
  53. 2d9db1d Try to fix issue #15086: build failure on Ubuntu shared buildbot. by Antoine Pitrou · 12 years ago
  54. 81c39a8 get_sourcefile(): use PyUnicode_READ() to avoid the creation of a temporary by Victor Stinner · 12 years ago
  55. c9d369f Optimize _PyUnicode_FastCopyCharacters() when maxchar(from) > maxchar(to) by Victor Stinner · 12 years ago
  56. 24aa693 Merge by Brett Cannon · 12 years ago
  57. 2b89fdf PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() result by Victor Stinner · 12 years ago
  58. 99d776f Update importlib.h by touching Lib/importlib/_bootstrap.py. by Brett Cannon · 12 years ago
  59. 187aa54 Signal condition variables with the mutex held. Destroy condition variables by Kristján Valur Jónsson · 12 years ago
  60. 409da15 Eric Snow's implementation of PEP 421. by Barry Warsaw · 12 years ago
  61. 3a37b83 merge 3.2 by Benjamin Peterson · 12 years ago
  62. 8e8fbea don't leak if the __class__ closure is set by Benjamin Peterson · 12 years ago
  63. d1ab608 check return for error by Benjamin Peterson · 12 years ago
  64. d3f0882 Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args and str.format(args) by Victor Stinner · 12 years ago
  65. a1b0c9f PyArg_Parse*("U"): ensure that the Unicode string is ready by Victor Stinner · 12 years ago
  66. 0b43bcf Close #14857: fix regression in references to PEP 3135 implicit __class__ closure variable. Reopens issue #12370, but also updates unittest.mock to workaround that issue by Nick Coghlan · 12 years ago
  67. 5c6eba3 Tweak importlib._bootstrap to avoid zero-argument super so I can work on issue #14857 without breaking imports by Nick Coghlan · 12 years ago
  68. d785cb3 Remove some redundant decorators. by Brett Cannon · 12 years ago
  69. 7ded1f0 Implemented PEP 405 (Python virtual environments). by Vinay Sajip · 12 years ago
  70. 984b11f issue 14660: Implement PEP 420, namespace packages. by Eric V. Smith · 12 years ago
  71. ea3eb88 Issue #9260: A finer-grained import lock. by Antoine Pitrou · 12 years ago
  72. b84bc7a Avoid "warning: no newline at end of file" in importlib.h. by Antoine Pitrou · 12 years ago
  73. 77fa937 use Py_ssize_t for ast sequence lengths by Benjamin Peterson · 12 years ago
  74. 41829e8 Document f4d7ad6c9d6e. by Martin v. Löwis · 12 years ago
  75. cc10a37 Widen ASDL sequences to Py_ssize_t lengths to better match PEP 353. by Martin v. Löwis · 12 years ago
  76. 6ecf8ce apparently importlib.h wants to be updated by Benjamin Peterson · 12 years ago
  77. d5a1c44 PEP 415: Implement suppression of __context__ display with an exception attribute by Benjamin Peterson · 12 years ago
  78. 401f9f3 Fix #13210. Port the Windows build from VS2008 to VS2010. by Brian Curtin · 12 years ago
  79. c049952 Issue #13959: Have by Brett Cannon · 12 years ago
  80. 44ec91f Update importlib.h by Brett Cannon · 12 years ago
  81. d576c71 Issue #14761: Fix potential leak on an error case in the import machinery. by Antoine Pitrou · 12 years ago
  82. a347901 Issue #14746: Remove redundant paragraphs from skipitem() in Python/getargs.c. by Larry Hastings · 12 years ago
  83. d3f424f Merge from 3.2. Issue #14749: Add support for 'Z' to skipitem(). by Larry Hastings · 12 years ago
  84. d9e4a41 Issue #14749: Add support for 'Z' to skipitem() in Python/getargs.c. by Larry Hastings · 12 years ago
  85. 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
  86. 10ba07a Issue #14705: Added support for the new 'p' format unit to skipitem(). by Larry Hastings · 12 years ago
  87. b78174c Fix too early decrefs. by Antoine Pitrou · 12 years ago
  88. faf91e7 Issue #14705: Add 'p' format character to PyArg_ParseTuple* for bool support. by Larry Hastings · 12 years ago
  89. 8f46d65 Fix typo in changeset eb5c5c23ca9b. by Nadeem Vawda · 12 years ago
  90. feccc09 Clean up a docstring. by Brett Cannon · 12 years ago
  91. f3a42de Simplify code for load_dynamic() by Antoine Pitrou · 12 years ago
  92. 0429e1a Issue #13959: Move module type constants to Lib/imp.py. by Brett Cannon · 12 years ago
  93. 6b9b727 Remove dead Windows code which no longer will compile. by Brett Cannon · 12 years ago
  94. a6685e8 update importlib.h by Brett Cannon · 12 years ago
  95. 2657df4 Issue #13959: Re-implement imp.get_suffixes() in Lib/imp.py. by Brett Cannon · 12 years ago
  96. 76ad59b Issue #14127: Add ns= parameter to utime, futimes, and lutimes. by Larry Hastings · 12 years ago
  97. 49a69e4 strip is_ prefixes on clock_info fields by Benjamin Peterson · 12 years ago
  98. 62228db Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py. by Brett Cannon · 12 years ago
  99. acf85cd Issue #13959: Re-implement imp.NullImporter in Lib/imp.py. by Brett Cannon · 12 years ago
  100. e383e82 Issue #14521: Make result of float('nan') and float('-nan') more consistent across platforms. Further, don't rely on Py_HUGE_VAL for float('inf'). by Mark Dickinson · 12 years ago