Python 3.7.0b1
  1. 9561d7f Update NEWS, docs, and patchlevel for 3.7.0b1 by Ned Deily · 8 years ago v3.7.0b1
  2. 7fdefac bpo-32726: Build macOS 10.9+ installer with private copy of Tcl/Tk 8.6 by Ned Deily · 8 years ago
  3. 8c9bb72 bpo-32726: macOS installer and framework enhancements and changes for 3.7.0 (GH-5448) by Ned Deily · 8 years ago
  4. 763f094 bpo-28440: Don't add /Library/Python/3.x/site-packages to sys.path (#5445) by Ned Deily · 8 years ago
  5. 67adb31 bpo-32724: Fix references to commands in Doc/pdb.rst (GH-5444) by Stéphane Wirtel · 8 years ago
  6. 066df4f bpo-22908: Add seek and tell functionality to ZipExtFile (GH-4966) by John Jolly · 8 years ago
  7. dd42cb7 bpo-31961: subprocess now accepts path-like args (GH-4329) by Anders Lorentsen · 8 years ago
  8. ce0f33d bpo-32102 Add "capture_output=True" to subprocess.run (GH-5149) by Bo Bayles · 8 years ago
  9. 9544180 closes bpo-32721: do not fail test_hashlib if _md5 isn't available (GH-5441) by Benjamin Peterson · 8 years ago
  10. 3d86e48 bpo-32681: Fix an uninitialized variable in the C implementation of os.dup2 (GH-5346) by Stéphane Wirtel · 8 years ago
  11. ce237c7 bpo-21417: Add compresslevel= to the zipfile module (GH-5385) by Bo Bayles · 8 years ago
  12. f4d644f bpo-25942: make subprocess more graceful on ^C (GH-5026) by Gregory P. Smith · 8 years ago
  13. 7f8bfc9 bpo-32604: Expose the subinterpreters C-API in a "private" stdlib module. (gh-1748) by Eric Snow · 8 years ago
  14. 332cd5e bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181) by Mark Shannon · 8 years ago
  15. b6e43af bpo-28134: Auto-detect socket values from file descriptor (#1349) by Christian Heimes · 8 years ago
  16. 72a0d21 bpo-31356: Add context manager to temporarily disable GC (GH-4224) by Pablo Galindo · 8 years ago
  17. 2a2270d bpo-32703: Fix coroutine resource warning in case where there's an error (GH-5410) by Yury Selivanov · 8 years ago
  18. aa218d1 bpo-27931: Fix email address header parsing error (#5329) by jayyyin · 8 years ago
  19. e6d3421 bpo-25988: Deprecate exposing collections.abc in collections GH-5414 by Raymond Hettinger · 8 years ago
  20. 66e5742 bpo-28414: ssl module idna test (#5395) by Christian Heimes · 8 years ago
  21. 892d66e bpo-31429: Define TLS cipher suite on build time (#3532) by Christian Heimes · 8 years ago
  22. 2914bb3 bpo-20891: Py_Initialize() now creates the GIL (#4700) by Victor Stinner · 8 years ago
  23. 1e34da4 bpo-28685: Optimize sorted() list.sort() with type-specialized comparisons (#582) by embg · 8 years ago
  24. 6c6ddf9 bpo-20104: Expose `posix_spawn` in the os module (GH-5109) by Pablo Galindo · 8 years ago
  25. 4687702 bpo-32650: Add native coroutine support to bdb when stepping over line (GH-5400) by Pablo Galindo · 8 years ago
  26. f11b460 bpo-32373: Add socket.getblocking() method. (#4926) by Yury Selivanov · 8 years ago
  27. 631fd38 bpo-32251: Implement asyncio.BufferedProtocol. (#4755) by Yury Selivanov · 8 years ago
  28. 0ceb717 Revert "bpo-32221: makeipaddr(): remove interface part + speedup (GH-4724)" (#5394) by Yury Selivanov · 8 years ago
  29. f36ba12 bpo-32697: Definition order of kwonly params is now guaranteed preserved. (#5391) by larryhastings · 8 years ago
  30. bec2372 bpo-32327: Revert loop.run_in_executor behaviour: return a Future. (#5392) by Yury Selivanov · 8 years ago
  31. a4d0001 bpo-32690: Preserve order of locals() (#5379) by Raymond Hettinger · 8 years ago
  32. 059f58c bpo-32228: Reset raw_pos after unwinding the raw stream (#4858) by Nitish Chandra · 8 years ago
  33. f0a95f2 bpo-32660: Solaris should support constants like termios' FIONREAD (#5328) by jcea · 8 years ago
  34. 6c51d51 bpo-32659: Solaris "stat" should support "st_fstype" (#5307) by jcea · 8 years ago
  35. 43c0f1a bpo-32685: Improve suggestion for print statement (GH-5375) by Nitish Chandra · 8 years ago
  36. 255f7a2 bpo-32649: Add C API docs for per-opcode tracing & profiling (GH-5360) by Xiang Zhang · 8 years ago
  37. a278ad2 bpo-30306: Add missing NEWS entry (GH-5374) by Nick Coghlan · 8 years ago
  38. ea8fc52 bpo-32513: Make it easier to override dunders in dataclasses. (GH-5366) by Eric V. Smith · 8 years ago
  39. 47c0b1f bpo-32221: makeipaddr(): remove interface part + speedup (GH-4724) by Коренберг Марк · 8 years ago
  40. 7c68407 bpo-32622: Implement loop.sendfile() (#5271) by Andrew Svetlov · 8 years ago
  41. f13f12d bpo-32630: Use contextvars in decimal (GH-5278) by Yury Selivanov · 8 years ago
  42. 4defba3 bpo-31368: Expose preadv and pwritev in the os module (#5239) by Pablo Galindo · 8 years ago
  43. 61d478c bpo-31399: Let OpenSSL verify hostname and IP address (#3462) by Christian Heimes · 8 years ago
  44. 746cc75 bpo-31853: Replaced socket.method calls with super() in SSLSocket. (#4048) by Mads Jensen · 8 years ago
  45. d0e31b9 bpo-32454: socket closefd (#5048) by Christian Heimes · 8 years ago
  46. 2f050c7 bpo-32433: Optimized HMAC digest (#5023) by Christian Heimes · 8 years ago
  47. a49ac99 bpo-32677: Add .isascii() to str, bytes and bytearray (GH-5342) by INADA Naoki · 8 years ago
  48. 29a7df7 bpo-32521: nis libnsl (#5190) by Christian Heimes · 8 years ago
  49. 43c47fe bpo-32670: Enforce PEP 479. (#5327) by Yury Selivanov · 8 years ago
  50. d7773d9 bpo-18533: Avoid RecursionError from repr() of recursive dictview (#4823) by bennorth · 8 years ago
  51. 863b1e4 bpo-29237: Create enum for pstats sorting options (GH-5103) by mwidjaja · 8 years ago
  52. 2fc98ae bpo-32304: Fix distutils upload for sdists ending with \x0d (GH-5264) by Bo Bayles · 8 years ago
  53. c47dacb bpo-32574: Fix leaks in asyncio.Queue.put() and .get() (#5208) by José Melero Fernández · 8 years ago
  54. c9070d0 bpo-32662: Implement Server.start_serving() and Server.serve_forever() (#5312) by Yury Selivanov · 8 years ago
  55. 1aa094f bpo-29302: Implement contextlib.AsyncExitStack. (#4790) by Ilya Kulakov · 8 years ago
  56. fe133aa bpo-32391: Implement StreamWriter.wait_closed() (#5281) by Andrew Svetlov · 8 years ago
  57. 04af5b1 bpo-10381: Add timezone to datetime C API (#5032) by Paul Ganssle · 8 years ago
  58. ccbe581 bpo-29708: Setting SOURCE_DATE_EPOCH forces hash-based .pyc files (GH-5200) by Bernhard M. Wiedemann · 8 years ago
  59. 6f6eb35 bpo-32248 - Implement `ResourceReader` and `get_resource_reader()` for zipimport (#5248) by Barry Warsaw · 8 years ago
  60. 22feeb8 bpo-32643: Drop support for a few private Task and Future APIs. (#5293) by Yury Selivanov · 8 years ago
  61. 131fd7f bpo-17799: Explain real behaviour of sys.settrace and sys.setprofile (#4056) by Pablo Galindo · 8 years ago
  62. 6b273f7 bpo-32502: Discard 64-bit (and other invalid) hardware addresses (#5254) by Bo Bayles · 8 years ago
  63. e768c86 bpo-32635: Fix a segfault when importing the crypt module with libxcrypt. (#5284) by stratakis · 8 years ago
  64. f23746a bpo-32436: Implement PEP 567 (#5027) by Yury Selivanov · 8 years ago
  65. 13ff245 bpo-32593: Drop FreeBSD 9 and older support (#5232) by Victor Stinner · 8 years ago
  66. b0a7a03 bpo-31179: Make dict.copy() up to 5.5 times faster. (#3067) by Yury Selivanov · 8 years ago
  67. a4b1bb4 bpo-31801: Enum: add _ignore_ as class option (#5237) by Ethan Furman · 8 years ago
  68. fc2f407 bpo-32591: Add native coroutine origin tracking (#5250) by Nathaniel J. Smith · 8 years ago
  69. 1211c9a bpo-32503: Avoid creating too small frames in pickles. (#5127) by Serhiy Storchaka · 8 years ago
  70. bd5c7d2 bpo-32602: Test ECDSA certs (#5247) by Christian Heimes · 8 years ago
  71. ff5be6e bpo-32598: Use autoconf to detect usable OpenSSL (#5242) by Christian Heimes · 8 years ago
  72. d57f26c bpo-32028: Fix suggestions for indented print statements (GH-4688) by Sanyam Khurana · 8 years ago
  73. 6690bb9 bpo-32596: Lazy import concurrent.futures.process and thread (GH-5241) by INADA Naoki · 8 years ago
  74. 2507e29 bpo-32588: Move _findvs into its own module and add missing _queue module to installer (#5227) by Steve Dower · 8 years ago
  75. ab74504 bpo-32576: use queue.SimpleQueue in critical places (#5216) by Antoine Pitrou · 8 years ago
  76. ced9cb5 bpo-32549: Compile OpenSSL 1.1.0 on Travis CI (#5180) by Christian Heimes · 8 years ago
  77. 9f1b7b9 bpo-32403: Faster date and datetime constructors (#4993) by Paul Ganssle · 8 years ago
  78. 6b5a279 bpo-32410: Implement loop.sock_sendfile() (#4976) by Andrew Svetlov · 8 years ago
  79. 378edee bpo-32544: Speed up hasattr() and getattr() (GH-5173) by INADA Naoki · 8 years ago
  80. b44c516 bpo-26163: Frozenset hash improvement (#5194) by Raymond Hettinger · 8 years ago
  81. 94e1696 bpo-14976: Reentrant simple queue (#3346) by Antoine Pitrou · 8 years ago
  82. cb064fc bpo-31900: Fix localeconv() encoding for LC_NUMERIC (#4174) by Victor Stinner · 8 years ago
  83. bca4218 bpo-32248: Introduce the concept of Loader.get_resource_reader() (GH-5108) by Brett Cannon · 8 years ago
  84. 5b76bdb bpo-31993: Do not use memoryview when pickle large strings. (#5154) by Serhiy Storchaka · 8 years ago
  85. f3031b8 bpo-32521: nis libtirpc (#5137) by Christian Heimes · 8 years ago
  86. ae12f5d bpo-32473: Improve ABCMeta._dump_registry() readability (GH-5091) by yahya-abou-imran · 8 years ago
  87. 02556fb bpo-32467: Let collections.abc.ValuesView inherit from Collection (#5152) by Raymond Hettinger · 8 years ago
  88. 782d6fe bpo-31113: Get rid of recursion in the compiler for normal control flow. (#3015) by Serhiy Storchaka · 8 years ago
  89. 3948207 bpo-32320: Add default value support to collections.namedtuple() (#4859) by Raymond Hettinger · 8 years ago
  90. d4864c6 bpo-24340: Fix estimation of the code stack size. (#5076) by Serhiy Storchaka · 8 years ago
  91. b4ebaa7 bpo-32493: Not only AIX, but FreeBSD has uuid_create support (#5089) by David Carlier · 8 years ago
  92. a612df0 Fix several changelog items to use PEP markup. by Ned Deily · 8 years ago
  93. 868460c Merge tag 'v3.7.0a4' by Ned Deily · 8 years ago
  94. d135f20 bpo-32507: Change Windows install to include app-local UCRT (#5119) by Steve Dower · 8 years ago
  95. 3b43bfa Update docs for 3.7.0a4 by Ned Deily · 8 years ago
  96. 9b99747 bpo-31975 (PEP 565): Show DeprecationWarning in __main__ (GH-4458) by Nick Coghlan · 8 years ago
  97. d138892 bpo-32506: Change dataclasses from OrderedDict to plain dict. (gh-5131) by Eric V. Smith · 8 years ago
  98. 3460198 bpo-31802: Fix importing native path module before importing os. (#4017) by Serhiy Storchaka · 8 years ago
  99. e46a8af bpo-30579: Allow TracebackType creation and tb_next mutation from Python (GH-4793) by Nathaniel J. Smith · 8 years ago
  100. af11a15 bpo-32282: Remove unnecessary check for `VersionHelpers.h` in `socketmodule.c` on Windows by Max Bélanger · 8 years ago