1. d382bfc Move importlib.test.benchmark to Tools/importbench to make it more by Brett Cannon · 12 years ago
  2. 45a5e3a Issue #15168: Move importlb.test to test.test_importlib. by Brett Cannon · 12 years ago
  3. 4afc1c0 Merge by Brett Cannon · 12 years ago
  4. 6ee9695 Issue #15091: Call importlib.invalidate_caches() and reactivate a test by Brett Cannon · 12 years ago
  5. b17ad53 Issue #15406: Fix deprecation warning in ctypes test_bitfields.py by Meador Inge · 12 years ago
  6. ca9652e Issue #15406: Fix deprecation warning in ctypes test_bitfields.py by Meador Inge · 12 years ago
  7. 818b118 Add missing NEWS entry for changeset b79d276041a8 by Ronald Oussoren · 12 years ago
  8. a036476 Merge 3.2 by Andrew Svetlov · 12 years ago
  9. ddcb620 Issue #15404: Refleak in PyMethodObject repr. by Andrew Svetlov · 12 years ago
  10. 26fe37d #1492704: Backout and wait for 3.4 by Hynek Schlawack · 12 years ago
  11. f4cc216 Issue #15394: Fix ref leaks in PyModule_Create. by Meador Inge · 12 years ago
  12. 29e49d6 Issue #15394: Fix ref leaks in PyModule_Create. by Meador Inge · 12 years ago
  13. 77d3283 #1492704: Make shutil.copyfile() raise a distinct SameFileError by Hynek Schlawack · 12 years ago
  14. 7506dab Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows. by Meador Inge · 12 years ago
  15. 60c2266 Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows. 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. 76e0770 Close #15387: inspect.getmodulename() now uses a new importlib.machinery.all_suffixes() API rather than the deprecated inspect.getmoduleinfo() by Nick Coghlan · 12 years ago
  19. 4866266 Fixes Issue #14635: telnetlib will use poll() rather than select() when possible by Gregory P. Smith · 12 years ago
  20. dad5711 Fixes Issue #14635: telnetlib will use poll() rather than select() when possible by Gregory P. Smith · 12 years ago
  21. b403806 Issue #15202: Consistently use the name "follow_symlinks" for by Larry Hastings · 12 years ago
  22. 9ac4d88 #15180: Clarify posixpath.join() error message when mixing str & bytes by Hynek Schlawack · 12 years ago
  23. 4774946 #15180: Clarify posixpath.join() error message when mixing str & bytes by Hynek Schlawack · 12 years ago
  24. 8ecf504 Issue #15343: Handle importlib.machinery.FileFinder instances in pkgutil.walk_packages (et al) by Nick Coghlan · 12 years ago
  25. 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
  26. 1191709 - Issue #15233: Python now guarantees that callables registered with by Larry Hastings · 12 years ago
  27. ad5ae04 - Issue #15238: shutil.copystat now copies Linux "extended attributes". by Larry Hastings · 12 years ago
  28. 24711c4 Merge #15230 doc updates from 3.2 by Nick Coghlan · 12 years ago
  29. a3d1cac Issue #15230: Update runpy docs to clarify a couple of points that came up in this issue by Nick Coghlan · 12 years ago
  30. 2f54b98 Merge fix for #15230 from 3.2 by Nick Coghlan · 12 years ago
  31. 761bb11 Close #15230: runpy.run_path now sets __package__ correctly. Also refactored the runpy tests to use a more systematic approach by Nick Coghlan · 12 years ago
  32. 924ae1b Remove duplicate entry and fix order by Antoine Pitrou · 12 years ago
  33. f0b1baf Issue #15334: skip test_dynamic_key when run in non-interactive mode. by Antoine Pitrou · 12 years ago
  34. a6473f9 Issues #15169, #14599: Make PyImport_ExecCodeModuleWithPathnames() use by Brett Cannon · 12 years ago
  35. d104eef Issue #15053: Make sure all functions related to the import lock have by Brett Cannon · 12 years ago
  36. 282083d Issue #15300: Ensure the temporary test working directories are in the same parent folder when running tests in multiprocess mode from a Python build. by Antoine Pitrou · 12 years ago
  37. 673eb6a Issue #15300: Ensure the temporary test working directories are in the same parent folder when running tests in multiprocess mode from a Python build. by Antoine Pitrou · 12 years ago
  38. 461c813 Issue #15111: When a module was imported using a 'from import' by Brett Cannon · 12 years ago
  39. 7d30b80 Issue #15315: Support VS 2010 in distutils cygwincompiler. by Martin v. Löwis · 12 years ago
  40. b2dd880 Issue #15294: Fix a regression in pkgutil.extend_path()'s handling of nested namespace packages. by Antoine Pitrou · 12 years ago
  41. b194497 Issue #15288: Clarify that pkgutil.walk_packages() and friends will no by Brett Cannon · 12 years ago
  42. 19a2f59 Issue #15056: imp.cache_from_source() and source_from_cache() raise by Brett Cannon · 12 years ago
  43. bf7eab0 Issue #15256: Re-use the ImportError exception message as defined by by Brett Cannon · 12 years ago
  44. 612a815 revert the changes done for issue14826 - quoting witin Request is not desirable. by Senthil Kumaran · 12 years ago
  45. 168456d revert the changes done for issue14826 - quoting witin Request is not desirable. by Senthil Kumaran · 12 years ago
  46. dd445e8 Merge 3.2 closes issue 13557 by Terry Jan Reedy · 12 years ago
  47. 83efd6c Issue #13557: Clarify effect of giving two different namespaces to exec or by Terry Jan Reedy · 12 years ago
  48. 68aecb5 add news note for 85cccc38d01c by Benjamin Peterson · 12 years ago
  49. 5075074 Issue #15291: Fix a memory leak where AST nodes where not properly deallocated. by Antoine Pitrou · 12 years ago
  50. bc07a5c Issue #15110: Fix the tracebacks generated by "import xxx" to not show the importlib stack frames. by Antoine Pitrou · 12 years ago
  51. 25bfb52 issue 14826 - Address the buildbot failure quote of url is the required change ( explanation msg164973) by Senthil Kumaran · 12 years ago
  52. 45ce4dc issue 14826 - Address the buildbot failure ( explanation msg164973) by Senthil Kumaran · 12 years ago
  53. 8d459f0 #15284: Skip {send,recv}msg tests with disabled IPv6 by Ross Lagerwall · 12 years ago
  54. 540715a Fix issue14826 - make urllib.request.Request quoted url consistent with URLOpener open method. by Senthil Kumaran · 12 years ago
  55. b7451ce Fix issue14826 - make urllib.request.Request quoted url consistent with URLOpener open method. by Senthil Kumaran · 12 years ago
  56. a5e0eaf Fix 5931 - Python runtime hardcoded in wsgiref.simple_server - Now it specifies an implementation specific term. by Senthil Kumaran · 12 years ago
  57. 5aa4354 Merge with remote. by Ross Lagerwall · 12 years ago
  58. 121d59f #15277: Fix a resource leak in support.py when IPv6 is disabled. by Ross Lagerwall · 12 years ago
  59. 109d573 Issue #13248: io: Remove obsolete argument "max_buffer_size" of BufferedWriter and BufferedRWPair. by Florent Xicluna · 12 years ago
  60. af1adbe Issue #13248: argparse: Remove obsolete argument "version" of ArgumentParser. by Florent Xicluna · 12 years ago
  61. 3008ec0 Issue 14814: Ensure ordering semantics across all 3 entity types in ipaddress are consistent and well-defined by Nick Coghlan · 12 years ago
  62. 9a9c28c Issue 14814: Correctly return NotImplemented from ipaddress._BaseNetwork.__eq__ by Nick Coghlan · 12 years ago
  63. fed2c51 Merge branch by Florent Xicluna · 12 years ago
  64. 11f0b41 Issue #14990: tokenize: correctly fail with SyntaxError on invalid encoding declaration. by Florent Xicluna · 12 years ago
  65. 36f8dcd Issue 14814: Provide more informative error messages in ipaddress, and ensure that errors are caught as expected by Nick Coghlan · 12 years ago
  66. 9dc823d - Issue #15268: Search curses.h in /usr/include/ncursesw. by doko@ubuntu.com · 12 years ago
  67. 7d7f40c Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory. by Antoine Pitrou · 12 years ago
  68. 9235b25 Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory. by Antoine Pitrou · 12 years ago
  69. 2240ac1 Issue #15261: Stop os.stat(fd) crashing on Windows when fd not open. by Richard Oudkerk · 12 years ago
  70. 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
  71. 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
  72. f28fbab Fix issue # 15033 - Return the proper exitcode for failure when modules are invoked using -m switch. Patch contributed by Jeff Knupp by Senthil Kumaran · 12 years ago
  73. f01a337 Fix issue # 15033 - Return the proper exitcode for failure when modules are invoked using -m switch. Patch contributed by Jeff Knupp by Senthil Kumaran · 12 years ago
  74. ed1f7c8 Closes #14902: Fixed timezone conversion of a date/time in the past. Thanks to Yuriy Syrovetskiy for the report and Juancarlo Añez for the patch on which this fix is based. by Vinay Sajip · 12 years ago
  75. 98979b8 Issue #15166: Re-implement imp.get_tag() using sys.implementation. by Brett Cannon · 12 years ago
  76. 8e2f556 Issue #15210: If _frozen_importlib is not found in sys.modules by by Brett Cannon · 12 years ago
  77. 1e33156 Closes #15030: Make importlib.abc.PyPycLoader respect the new .pyc by Brett Cannon · 12 years ago
  78. 15bac0f - Issue #15235: Allow Berkley DB versions up to 5.3 to build the dbm module. by doko@ubuntu.com · 12 years ago
  79. f87289b Issue #15229: An OSError subclass whose __init__ doesn't call back by Antoine Pitrou · 12 years ago
  80. 7e6c2e2 - Issue #14330: For cross builds, don't use host python, use host search paths by doko@ubuntu.com · 12 years ago
  81. 24ef3e9 Issue #15225: improve error message when hmac is passed a wrong key type. by Antoine Pitrou · 12 years ago
  82. 2565288 #5346: Preserve permissions of mbox, MMDF and Babyl mailbox files on flush() by Petri Lehtinen · 12 years ago
  83. 5b5619f #5346: Preserve permissions of mbox, MMDF and Babyl mailbox files on flush() by Petri Lehtinen · 12 years ago
  84. c92448b Issue #10571: Fix the "--sign" option of distutils' upload command. by Antoine Pitrou · 12 years ago
  85. 24319ac Issue #10571: Fix the "--sign" option of distutils' upload command. by Antoine Pitrou · 12 years ago
  86. dde8cb0 #9559: Append data to single-file mailbox files if messages are only added by Petri Lehtinen · 12 years ago
  87. f29435f #9559: Append data to single-file mailbox files if messages are only added by Petri Lehtinen · 12 years ago
  88. 8d37ffa Issue #12605: Show information on more C frames within gdb backtraces by David Malcolm · 12 years ago
  89. afa2973 Issue 10924: Fixed mksalt() to use a RNG that is suitable for cryptographic purpose by Christian Heimes · 12 years ago
  90. 9facaf4 Issue #15079: make a test applicable to both C and Python versions of the pickle module. by Antoine Pitrou · 12 years ago
  91. 79035bd Issue #15079: make a test applicable to both C and Python versions of the pickle module. by Antoine Pitrou · 12 years ago
  92. b837192 Issue #14443: ensure that brp-python-bytecompile is invoked with the correct by David Malcolm · 12 years ago
  93. 2a91876 - Issue #15194: Update libffi to the 3.0.11 release. by doko@ubuntu.com · 12 years ago
  94. d08cec6 Bump version to 3.3.0b1. by Georg Brandl · 12 years ago
  95. 805dff5 Fix issue # in Misc/NEWS (should be #15187, not 15817.) by Larry Hastings · 12 years ago
  96. 5b2f9c0 Issue #15817: Bugfix: remove temporary directories test_shutil was leaving by Larry Hastings · 12 years ago
  97. 0b1b9ce If main() is called and an argument cannot be decoded, make sure to by Brett Cannon · 12 years ago
  98. 555bfc7 Issue #14443: ensure that brp-python-bytecompile is invoked with the correct by David Malcolm · 12 years ago
  99. 52c6097 Moved hmac.compare_digest Misc/NEWS entry from Core and Builtins to Library. by Larry Hastings · 12 years ago
  100. c48fe98 Issue #15177: Added dir_fd parameter to os.fwalk(). by Larry Hastings · 12 years ago