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