Python 3.7.0a2
  1. c730223 Update NEWS and topics for 3.7.0a2 by Ned Deily · 8 years ago
  2. c75edab bpo-31558: Add gc.freeze() (#3705) by brainfvck · 8 years ago
  3. 0df1905 bpo-31776: Missing "raise from None" in Lib/xml/etree/ElementPath.py (#3978) by Pablo Galindo · 8 years ago
  4. 676db4b bpo-31792: Restore os.environ in test_buffer when import numpy. (#4007) by Serhiy Storchaka · 8 years ago
  5. 620f70e bpo-25588: Document autotest in idle_test/README.txt. (#4000) by Terry Jan Reedy · 8 years ago
  6. a505ecd bpo-31676: Fix test_imp.test_load_source() side effect (#3871) by Victor Stinner · 8 years ago
  7. ccef823 bpo-25588: Fix regrtest when run inside IDLE (#3962) by Victor Stinner · 8 years ago
  8. b22273e bpo-31672: Fix string.Template accidentally matched non-ASCII identifiers (GH-3872) by INADA Naoki · 8 years ago
  9. de07210 bpo-30058: Fixed buffer overflow in select.kqueue.control(). (#1095) by Serhiy Storchaka · 8 years ago
  10. 03b9537 bpo-31567: more decorator markup fixes in docs (GH-3959) (#3966) by Éric Araujo · 8 years ago
  11. 39ecb9c bpo-31728: Prevent crashes in _elementtree due to unsafe cleanup of Element.text and Element.tail (#3924) by Oren Milman · 8 years ago
  12. 6e3d6b5 bpo-31701: faulthandler: ignore MSC and COM Windows exception (#3929) by Victor Stinner · 8 years ago
  13. 0ccc0f6 bpo-28280: Make PyMapping_Keys(), PyMapping_Values() and PyMapping_Items() always return a list (#3840) by Oren Milman · 8 years ago
  14. f07e2b6 bpo-31642: Restore blocking "from" import by setting None in sys.modules. (#3834) by Serhiy Storchaka · 8 years ago
  15. 73ffd3f bpo-31724: Skip test_xmlrpc_net (GH-3921) by Zachary Ware · 8 years ago
  16. 79ba471 bpo-31655: Validate keyword names in SimpleNamespace constructor. (#3909) by Serhiy Storchaka · 8 years ago
  17. 02e82a0 bpo-31709: Update importlib magic (#3906) by Yury Selivanov · 8 years ago
  18. b8ab9d3 bpo-31708: Allow async generator expressions in synchronous functions (#3905) by Yury Selivanov · 8 years ago
  19. faa135a bpo-31709: Drop support for asynchronous __aiter__. (#3903) by Yury Selivanov · 8 years ago
  20. 8656670 weaken pthread_getcpuclockid test (more bpo-31596) (#3904) by Benjamin Peterson · 8 years ago
  21. ac31770 bpo-30406: Make async and await proper keywords (#1669) by Jelle Zijlstra · 8 years ago
  22. 36c1d1f PEP 553 built-in breakpoint() function (bpo-31353) (#3355) by Barry Warsaw · 8 years ago
  23. 4d07189 bpo-31556: asyncio.wait_for can cancel futures faster with timeout <= 0 (#3703) by Victor K · 8 years ago
  24. 11045c9 bpo-31178: Mock os.waitpid() in test_subprocess (#3896) by Victor Stinner · 8 years ago
  25. c1c47c1 bpo-31671: re: Convert RegexFlag to int before compile (GH-3862) by INADA Naoki · 8 years ago
  26. af810b3 closes bpo-27494: Fix 2to3 handling of trailing comma after a generator expression (#3771) by Jakub Stasiak · 8 years ago
  27. e14679c closes bpo-31596: Add an interface for pthread_getcpuclockid(3) (#3756) by pdox · 8 years ago
  28. 77732be bpo-30404: The -u option now makes the stdout and stderr streams totally unbuffered. (#1667) by Serhiy Storchaka · 8 years ago
  29. 0b5e61d bpo-30397: Add re.Pattern and re.Match. (#1646) by Serhiy Storchaka · 8 years ago
  30. bf477a9 bpo-31677: email: Remove re.IGNORECASE flag (GH-3868) by INADA Naoki · 8 years ago
  31. 27c623c8 bpo-31675: Fix memory leaks in Tkinter's methods splitlist() and split() (#3866) by Serhiy Storchaka · 8 years ago
  32. 543386b bpo-31657: Add test coverage for the __debug__ case (GH-3450) by diana · 8 years ago
  33. 85c0b89 bpo-31619: Fixed a ValueError when convert a string with large number of underscores (#3827) by Serhiy Storchaka · 8 years ago
  34. e8c368d bpo-31540: Allow passing multiprocessing context to ProcessPoolExecutor (#3682) by Thomas Moreau · 8 years ago
  35. e6cfdef bpo-31510: Fix multiprocessing test_many_processes() on macOS (#3857) by Victor Stinner · 8 years ago
  36. 4337a0d bpo-11063: Fix _uuid module on macOS (#3855) by Victor Stinner · 8 years ago
  37. 1023dbb bpo-31516: current_thread() should not return a dummy thread at shutdown (#3673) by Antoine Pitrou · 8 years ago
  38. e6f62f6 bpo-31158: Fix nondeterministic read in test_pty (#3808) by Cornelius Diekmann · 8 years ago
  39. b75a228 bpo-31659: Use simple slicing to format PEM cert (GH-3849) by INADA Naoki · 8 years ago
  40. 5961e7c IDLE: make filetypes a tuple constant. (#3847) by Terry Jan Reedy · 8 years ago
  41. d6bb65f bpo-31460: Simplify the API of IDLE's Module Browser. (#3842) by Terry Jan Reedy · 8 years ago
  42. bfebfd8 bpo-31649: Make IDLE's _htest, _utest parameters keyword-only. (#3839) by Terry Jan Reedy · 8 years ago
  43. 7dc46d8 bpo-31592: Fix an assertion failure in Python parser in case of a bad unicodedata.normalize(). (#3767) by Oren Milman · 8 years ago
  44. f4ea642 bpo-31627: Make test_mailbox be lenient to empty hostname. (#3821) by Serhiy Storchaka · 8 years ago
  45. 101a5e8 bpo-31648: Improve ElementPath (#3835) by scoder · 8 years ago
  46. 9811e80 bpo-31581: Reduce the number of imports for functools (GH-3757) by INADA Naoki · 8 years ago
  47. b24cd05 bpo-30806 netrc.__repr__() is broken for writing to file (GH-2491) by James Sexton · 8 years ago
  48. 574562c bpo-31641: Allow arbitrary iterables in `concurrent.futures.as_completed()` (#3830) by Łukasz Langa · 8 years ago
  49. 01c6a88 bpo-31602: Fix an assertion failure in zipimporter.get_source() in case of a bad zlib.decompress() (GH-3784) by Oren Milman · 8 years ago
  50. d87b105 bpo-31638: Add compression support to zipapp (GH-3819) by Zhiming Wang · 8 years ago
  51. 90f1d98 bpo-25351: avoid activate failure on strict shells (GH-3804) by Sorin Sbarnea · 8 years ago
  52. 288d1da remove support for BSD/OS (closes bpo-31624) (#3812) by Benjamin Peterson · 8 years ago
  53. a106aec bpo-11063, bpo-20519: avoid ctypes and improve import time for uuid (#3796) by Antoine Pitrou · 8 years ago
  54. d780b2d bpo-31478: Fix an assertion failure in random.seed() in case a seed has a bad __abs__() method. (#3596) by Oren Milman · 8 years ago
  55. db50ba7 Trivial readability improvement (#3791) by Barry Warsaw · 8 years ago
  56. 5837d04 bpo-31588: Validate return value of __prepare__() methods (GH-3764) by Oren Milman · 8 years ago
  57. c740e4f bpo-30347: Stop crashes when concurrently iterate over itertools.groupby() iterators. (#1557) by Serhiy Storchaka · 8 years ago
  58. 114454e bpo-28293: Don't completely dump the regex cache when full. (#3768) by Serhiy Storchaka · 8 years ago
  59. 8110837 bpo-30152: Reduce the number of imports for argparse. (#1269) by Serhiy Storchaka · 8 years ago
  60. f1502d0 bpo-31569: correct PCBuild/ case to PCbuild/ in build scripts and docs (GH-3711) by Stefan Grönke · 8 years ago
  61. e6d9fcb bpo-31170: Write unit test for Expat 2.2.4 UTF-8 bug (#3570) by Victor Stinner · 8 years ago
  62. 57c2561 bpo-31311: Fix a SystemError and a crash in ctypes._CData.__setstate__(), in case of a bad __dict__. (#3254) by Oren Milman · 8 years ago
  63. 5d3e800 bpo-31566: Fix an assertion failure in _warnings.warn() in case of a bad __name__ global. (#3717) by Oren Milman · 8 years ago
  64. 91fb0af bpo-31285: Fix an assertion failure and a SystemError in warnings.warn_explicit. (#3219) by Oren Milman · 8 years ago
  65. 2fad102 bpo-27319, bpo-31508: Document deprecation in Treeview.selection(). (#3667) by Serhiy Storchaka · 8 years ago
  66. c247caf bpo-30346: An iterator produced by the itertools.groupby() iterator (#1569) by Serhiy Storchaka · 8 years ago
  67. 2b382dd bpo-31505: Fix an assertion failure in json, in case _json.make_encoder() received a bad encoder() argument. (#3643) by Oren Milman · 8 years ago
  68. cd99e79 bpo-31459: Rename IDLE's module browser from Class Browser to Module Browser. (#3704) by Cheryl Sabella · 8 years ago
  69. 99167f8 bpo-31559: Remove test order dependence in idle_test.test_browser. (#3708) by Terry Jan Reedy · 8 years ago
  70. 058de11 bpo-1612262: IDLE: Class Browser shows nested functions, classes (#2573) by Cheryl Sabella · 8 years ago
  71. 0a1ff24 bpo-17852: Maintain a list of BufferedWriter objects. Flush them on exit. (#3372) by Neil Schemenauer · 8 years ago
  72. 35425d6 bpo-31389 Add an optional `header` argument to pdb.set_trace() (#3438) by Barry Warsaw · 8 years ago
  73. b3a7796 bpo-27541: Reprs of subclasses of some classes now contain actual type name. (#3631) by Serhiy Storchaka · 8 years ago
  74. 9adda0c bpo-31351: Set return code in ensurepip when pip fails (GH-3626) by Igor Filatov · 8 years ago
  75. a96c96f bpo-31500: IDLE: Scale default fonts on HiDPI displays. (#3639) by Serhiy Storchaka · 8 years ago
  76. aaf6fc0 bpo-26510: make argparse subparsers required by default (#3027) by Anthony Sottile · 8 years ago
  77. d6e2f26 bpo-31500: Removed fixed size of IDLE config dialog. (#3664) by Terry Jan Reedy · 8 years ago
  78. 9e7b9b2 bpo-31507 Add docstring to parseaddr function in email.utils.parseaddr (gh-3647) by Rohit Balasubramanian · 8 years ago
  79. 9abee72 bpo-31479: Always reset the signal alarm in tests (#3588) by Victor Stinner · 8 years ago
  80. a92941f pythoninfo: ignore OSError(ENOSYS) on getrandom() (#3655) by Victor Stinner · 8 years ago
  81. 865e4b4 bpo-31293: Fix crashes in truediv and mul of a timedelta by a float with a bad as_integer_ratio() method. (#3227) by Oren Milman · 8 years ago
  82. 9974e1b bpo-31315: Fix an assertion failure in imp.create_dynamic(), when spec.name is not a string. (#3257) by Oren Milman · 8 years ago
  83. 6db7033 bpo-31492: Fix assertion failures in case of a module with a bad __name__ attribute. (#3620) by Oren Milman · 8 years ago
  84. 450ceea Update PyDoc topics and NEWS blurbs for 3.7.0a1 by Ned Deily · 8 years ago
  85. 88c60c9 Trivial cleanups following bpo-31370 (#3649) by Antoine Pitrou · 8 years ago
  86. b43c4ca Restore dummy_threading and _dummy_thread, but deprecate them (bpo-31370) (#3648) by Antoine Pitrou · 8 years ago
  87. a8e7d90 os.test_utime_current(): tolerate 50 ms delta (#3646) by Victor Stinner · 8 years ago
  88. e727d41 bpo-31499, xml.etree: Fix xmlparser_gc_clear() crash (#3641) by Victor Stinner · 8 years ago
  89. 55679e0 bpo-30928: Update idlelib/NEWS.txt to 2017 Sep 17. (#3635) by Terry Jan Reedy · 8 years ago
  90. 0efc7c6 bpo-31502: IDLE Configdialog again deletes custom themes and keysets. (#3634) by Terry Jan Reedy · 8 years ago
  91. 132a7d7 bpo-31482: Missing bytes support for random.seed() version 1 (#3614) by Raymond Hettinger · 8 years ago
  92. 30b61b5 bpo-31490: Fix an assertion failure in ctypes in case an _anonymous_ attr is defined only outside _fields_. (#3615) by Oren Milman · 8 years ago
  93. a6bb313 bpo-31493: Fix code context update and font update timers. (#3622) by Terry Jan Reedy · 8 years ago
  94. 5777ecc bpo-31488: IDLE - update former extensions when options change. (#3612) by Terry Jan Reedy · 8 years ago
  95. e82c034 bpo-31431: SSLContext.check_hostname auto-sets CERT_REQUIRED (#3531) by Christian Heimes · 8 years ago
  96. a170fa1 bpo-31346: Use PROTOCOL_TLS_CLIENT/SERVER (#3058) by Christian Heimes · 8 years ago
  97. 4df60f1 bpo-31386: Custom wrap_bio and wrap_socket type (#3426) by Christian Heimes · 8 years ago
  98. ff70289 bpo-314777: IDLE - improve rstrip entry in doc (#3602) by Terry Jan Reedy · 8 years ago
  99. 11f0807 bpo-31234: test_multiprocessing: wait 30 seconds (#3599) by Victor Stinner · 8 years ago
  100. da3e5cf bpo-31234: Join timers in test_threading (#3598) by Victor Stinner · 8 years ago