1. 24117a7 Issue #13959: Keep imp.get_magic() in C code, but cache in importlib by Brett Cannon · 12 years ago
  2. 3dfc22c Issue #14599: Support ImportError.path on AIX and HPUX when loading by Brett Cannon · 12 years ago
  3. f0434e6 Issue #14599: Generalize a test for ImportError.path and add support by Brett Cannon · 12 years ago
  4. 8ff6baf Issue #14581: Windows users are allowed to import modules w/o taking by Brett Cannon · 12 years ago
  5. 6fe20b3 Issue #14127: Add st_{cma}time_ns fields to os.stat() result object. by Larry Hastings · 12 years ago
  6. bf35c15 Fix refleak: PyObject_GetItem returns a new reference, not a borrowed one like PyDict_GetItem. by Antoine Pitrou · 12 years ago
  7. aa2efcb Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo. by Martin v. Löwis · 12 years ago
  8. b0b2242 Issue #14385: Support other types than dict for __builtins__ by Victor Stinner · 12 years ago
  9. 665c3b3 update importlib... by Benjamin Peterson · 12 years ago
  10. eca8518 Merge heads by Antoine Pitrou · 12 years ago
  11. ec9bac4 Fix it for good :-) by Antoine Pitrou · 12 years ago
  12. d76bc7a rollback 005fd1fe31ab (see #14609 and #14582) by Benjamin Peterson · 12 years ago
  13. da20cd2 fix refcnt/style/debuging oversights by Benjamin Peterson · 12 years ago
  14. 94c001b Fix email post-commit review comments. by Brian Curtin · 12 years ago
  15. 03c7ed1 Merge by Brett Cannon · 12 years ago
  16. 7bd329d Issue #12599: Be more strict in accepting None vs. a false-like object by Brett Cannon · 12 years ago
  17. 2a1fdc4 merge 3.2 (#14607) by Benjamin Peterson · 12 years ago
  18. 32c59b6 mangle keyword-only argname when loading defaults (closes #14607) by Benjamin Peterson · 12 years ago
  19. 64befe9 Issue #13959: Re-implement imp.load_compiled() in imp.py. by Brett Cannon · 12 years ago
  20. 273323c Issue #14592: A relative import will raise a KeyError if __package__ by Brett Cannon · 12 years ago
  21. 09b86d1 Fix #14600. Correct reference handling and naming of ImportError convenience function by Brian Curtin · 12 years ago
  22. 16475ad Issue #13959: Re-implement imp.load_source() in imp.py. by Brett Cannon · 12 years ago
  23. 22a1d17 Fix another refleak by Antoine Pitrou · 12 years ago
  24. 538ba2a Fix a refleak by Antoine Pitrou · 12 years ago
  25. 71382cb Fix reference loss on Py_None when None is encountered in sys.modules. by Antoine Pitrou · 12 years ago
  26. a938c74 Avoid compiler warning due to stray \x00 by Antoine Pitrou · 12 years ago
  27. b206a80 Fix #10854. Make use of the new path and name attributes on ImportError by Brian Curtin · 12 years ago
  28. 2ee6142 Issue #13959: Re-implement imp.load_package() in imp.py. by Brett Cannon · 12 years ago
  29. 01a7617 Issue #13959: Re-implement imp.load_module() in imp.py. by Brett Cannon · 12 years ago
  30. c1b3f63 Try to get hg to treat importlib.h as binary. by Brett Cannon · 12 years ago
  31. 8a1d04c Issue #13959: Simplify imp.reload() by relying on a module's __loader__. by Brett Cannon · 12 years ago
  32. 7ceedb8 Update importlib.h by Brett Cannon · 12 years ago
  33. 6f44d66 Issue #13959: Rename imp to _imp and add Lib/imp.py and begin by Brett Cannon · 12 years ago
  34. 881535b Issue #14582: Import returns the module returned by a loader instead by Brett Cannon · 12 years ago
  35. 27fc528 Set ImportError.name when raising the exception in the case of None by Brett Cannon · 12 years ago
  36. fc9ca27 Plug a refleak. by Brett Cannon · 12 years ago
  37. 49f8d8b Handle importing pkg.mod by executing by Brett Cannon · 12 years ago
  38. 59f9c3a Rebuild importlib.h to incorporate added comments. by Brett Cannon · 12 years ago
  39. e6b299f Fix Windows build by Brian Curtin · 12 years ago
  40. 740fce0 Undo a C99 idiom. by Brett Cannon · 12 years ago
  41. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  42. 780b66b merge 3.2 by Benjamin Peterson · 12 years ago
  43. 3bf0175 move outside WITH_THREAD conditional by Benjamin Peterson · 12 years ago
  44. 899ee61 merge 3.2 by Benjamin Peterson · 12 years ago
  45. 43162b8 take linkage def outside of WITH_THREAD conditional (closes #14569) by Benjamin Peterson · 12 years ago
  46. 79ec55e Issue #1559549: Add 'name' and 'path' attributes to ImportError. by Brett Cannon · 12 years ago
  47. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  48. 0a9a636 merge 3.2 by Benjamin Peterson · 12 years ago
  49. 80d5042 fix parse_syntax_error to clean up its resources by Benjamin Peterson · 12 years ago
  50. 368b4b7 Guard an LLTRACE variable to silence an unused variable warning. by Brett Cannon · 12 years ago
  51. 3c1e481 Issue #14383: Add _PyDict_GetItemId() and _PyDict_SetItemId() functions by Victor Stinner · 12 years ago
  52. 4b0215f Merge with 3.2 by Kristján Valur Jónsson · 12 years ago
  53. c5d47d5 Fix typo when "PyObject*" was changed to "identifier" by Kristján Valur Jónsson · 12 years ago
  54. cc58031 merge 3.2 by Benjamin Peterson · 12 years ago
  55. 9faf5ee this should technicaly be identifier by Benjamin Peterson · 12 years ago
  56. b304764 merge 3.2 by Benjamin Peterson · 12 years ago
  57. ab79c71 check for NULL by Benjamin Peterson · 12 years ago
  58. 98ba753 merge 3.2 (#14378) by Benjamin Peterson · 12 years ago
  59. a4e4e35 check by equality for __future__ not identity (closes #14378) by Benjamin Peterson · 12 years ago
  60. 302e790 use identifier api by Benjamin Peterson · 12 years ago
  61. 83a9f48 Issue #14328: Add keyword-only parameters to PyArg_ParseTupleAndKeywords. by Larry Hastings · 12 years ago
  62. c809f98 Fixes Issue #14331: Use significantly less stack space when importing modules by by Gregory P. Smith · 12 years ago
  63. 01feaec plug memory leak (closes #14325) by Benjamin Peterson · 12 years ago
  64. eb74918 kill capsule names that we don't need anymore by Benjamin Peterson · 12 years ago
  65. f7c1321 use memory macros by Benjamin Peterson · 12 years ago
  66. 7ed6727 check result of PyMem_New by Benjamin Peterson · 12 years ago
  67. f53d20f in 72556ff86828, I should have updated the magic as well as the comment (#14230) by Benjamin Peterson · 12 years ago
  68. c961b4a Issue #14325: Stop using python lists, capsules, and the garbage collector to deal with PyArg_Parse* cleanup. by Jean-Paul Calderone · 12 years ago
  69. abdb552 fix comment by Benjamin Peterson · 12 years ago
  70. 2afe6ae perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) by Benjamin Peterson · 12 years ago
  71. 1767e02 free AST's dict by Benjamin Peterson · 12 years ago
  72. 577c830 Issue #14184: merge by Ned Deily · 12 years ago
  73. 7ca97d5 Issue #14184: Increase the default stack size for secondary threads on by Ned Deily · 12 years ago
  74. bd273c1 Issue #14180: Fix an invalid rounding when compiler optimization are enabled by Victor Stinner · 12 years ago
  75. 3a31dd4 Issue #14180: Remove commented code by Victor Stinner · 12 years ago
  76. 5d272cc Close #14180: Factorize code to convert a number of seconds to time_t, timeval or timespec by Victor Stinner · 12 years ago
  77. 45e50de Try to fix compilation of Python-ast.c on Visual Studio 2008 by Victor Stinner · 12 years ago
  78. 518cf94 merge 3.2 by Benjamin Peterson · 12 years ago
  79. 3f35846 kill this disabled code by Benjamin Peterson · 12 years ago
  80. bebcd18 merge 3.2 by Benjamin Peterson · 12 years ago
  81. bc4665e use correct naming convention by Benjamin Peterson · 12 years ago
  82. 7e0dbfb give the AST class a __dict__ by Benjamin Peterson · 12 years ago
  83. f125bf5 Update copyright years and version name. by Georg Brandl · 12 years ago
  84. 6ecf77b Basic support for PEP 414 without docs or tests. by Armin Ronacher · 12 years ago
  85. 0d3a003 - Issue #14177: marshal.loads() now raises TypeError when given an unicode by Antoine Pitrou · 12 years ago
  86. 4a90ef0 Issue #14177: marshal.loads() now raises TypeError when given an unicode string. by Antoine Pitrou · 12 years ago
  87. 643cd68 Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tuple by Victor Stinner · 12 years ago
  88. 1c13f84 Simplify code in marshal.c. by Antoine Pitrou · 12 years ago
  89. b2677c7 Issue #14172: Fix reference leak when marshalling a buffer-like object (other than a bytes object). by Antoine Pitrou · 12 years ago
  90. 679e9d3 Issue #14172: Fix reference leak when marshalling a buffer-like object (other than a bytes object). by Antoine Pitrou · 12 years ago
  91. efb00c0 Issue #14153 Create _Py_device_encoding() to prevent _io from having to import by Brett Cannon · 12 years ago
  92. ab7bf21 Close issue #6210: Implement PEP 409 by Nick Coghlan · 12 years ago
  93. 90f50d4 Issue #13706: Fix format(float, "n") for locale with non-ASCII decimal point (e.g. ps_aF) by Victor Stinner · 12 years ago
  94. 41a863c Issue #13706: Fix format(int, "n") for locale with non-ASCII thousands separator by Victor Stinner · 12 years ago
  95. cf1c833 Issue #14084: Fix a file descriptor leak when importing a module with a bad encoding. by Antoine Pitrou · 12 years ago
  96. 4f22a8d Issue #14084: Fix a file descriptor leak when importing a module with a bad encoding. by Antoine Pitrou · 12 years ago
  97. 7214612 In find_module(), do not silence fileno() and dup() errors. by Antoine Pitrou · 12 years ago
  98. c9f54cf enable hash randomization by default by Benjamin Peterson · 12 years ago
  99. 528b54b Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 12 years ago
  100. 86838b0 Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 12 years ago