Python 3.7.0b3
  1. 4e7efa9 3.7.0b3 by Ned Deily · 7 years ago v3.7.0b3
  2. 7a6f59e bpo-32726: macOS 10.6+ installer now builds Tcl/TK 8.6 (GH-6308) by Ned Deily · 7 years ago
  3. a48614b FIX documentation and NEWS of ThreadedHTTPServer. (GH-6207) (GH-6302) by Miss Islington (bot) · 7 years ago
  4. fd93666 [3.7] Fix duplicating words words. (GH-6296) (GH-6297) by Serhiy Storchaka · 7 years ago
  5. 6124d8e bpo-33126: Document PyBuffer_ToContiguous() (GH-6292) (GH-6294) by Miss Islington (bot) · 7 years ago
  6. 6cb556f s/the the/the/ (GH-6287) by Miss Islington (bot) · 7 years ago
  7. b9172b9 [3.7] bpo-33163: Upgrade pip to 9.0.3 and setuptools to v39.0.1. (GH-6283) by Miss Islington (bot) · 7 years ago
  8. d2d5bd8 bpo-32872: Avoid regrtest compatibility issue with namespace packages. (GH-6276) (#6277) by Miss Islington (bot) · 7 years ago
  9. f328caf bpo-27212: Modify islice recipe to consume initial values preceding start (GH-6195) (#GH-6266) by Miss Islington (bot) · 7 years ago
  10. d0e04c8 bpo-32873: Treat type variables and special typing forms as immutable by copy and pickle (GH-6216) by Miss Islington (bot) · 7 years ago
  11. 0545563 bpo-32844: Fix a subprocess misredirection of a low fd (GH5689) by Miss Islington (bot) · 7 years ago
  12. c6147ac bpo-33141: Have dataclasses.Field pass through __set_name__ to any default argument. (GH-6260) by Miss Islington (bot) · 7 years ago
  13. a7b1b84 bpo-33096: Fix ttk.Treeview.insert. (GH-6228) by Miss Islington (bot) · 7 years ago
  14. ee37845 bpo-33053: -m now adds *starting* directory to sys.path (GH-6231) (#6236) by Nick Coghlan · 7 years ago
  15. 2dd885e [3.7] bpo-33136: Harden ssl module against CVE-2018-8970 (GH-6229) (GH-6230) by Miss Islington (bot) · 7 years ago
  16. c6d94c3 bpo-33042: Fix pre-initialization sys module configuration (GH-6157) by Miss Islington (bot) · 7 years ago
  17. 9989efb bpo-33134: dataclasses: use function dispatch table for hash, instead of a string lookup which then is tested with if tests. (GH-6222) by Miss Islington (bot) · 7 years ago
  18. 42bd62b [3.7] bpo-33127: Compatibility patch for LibreSSL 2.7.0 (GH-6210) (GH-6213) by Miss Islington (bot) · 7 years ago
  19. ac56027 bpo-33061: Add missing 'NoReturn' to __all__ in typing.py (GH-6127) (#6162) by Ivan Levkivskyi · 7 years ago
  20. 45738ed bpo-27428: Fix WindowsRegistryFinder documentation to list appropriate ABC (GH-6061) by Miss Islington (bot) · 7 years ago
  21. f8d2c3c bpo-31639: Use threads in http.server module. (GH-5018) by Miss Islington (bot) · 7 years ago
  22. b9744e9 bpo-33041: Fixed jumping if the function contains an "async for" loop. (GH-6154) by Serhiy Storchaka · 7 years ago
  23. 3b4c6b1 bpo-32505: dataclasses: raise TypeError if a member variable is of type Field, but doesn't have a type annotation. (GH-6192) by Miss Islington (bot) · 7 years ago
  24. 346964b bpo-33018: Improve issubclass() error checking and message. (GH-5944) by Miss Islington (bot) · 7 years ago
  25. 4ddc99d bpo-33116: Add 'Field' to dataclasses.__all__. (GH-6182) (GH-6183) by Miss Islington (bot) · 7 years ago
  26. f5625d5 FIX failure on OSX sem_getvalue (GH-6180) (GH-6181) by Miss Islington (bot) · 7 years ago
  27. bb5b529 bpo-33078 - Fix queue size on pickling error (GH-6119) (GH-6178) by Miss Islington (bot) · 7 years ago
  28. 22136c9 bpo-32896: Fix error when subclassing a dataclass with a field that uses a default_factory (GH-6170) (GH-6171) by Miss Islington (bot) · 7 years ago
  29. 3326c92 bpo-27683: Fix a regression for host() of ipaddress network objects (GH-6016) by Miss Islington (bot) · 7 years ago
  30. a323eee bpo-18802: Add more details to ipaddress documentation (GH-6083) by Miss Islington (bot) · 7 years ago
  31. a70b8f5 bpo-28247: Document Windows executable creation in zipapp (GH-6158) by Miss Islington (bot) · 7 years ago
  32. 56cce1c [3.7] bpo-33021: Release the GIL during fstat() calls (GH-6019) (GH-6159) by Miss Islington (bot) · 7 years ago
  33. 3d41f48 bpo-33100: Dataclasses now handles __slots__ and default values correctly. (GH-6152) (GH-6153) by Miss Islington (bot) · 7 years ago
  34. 4564831 bpo-32953: Dataclasses: frozen should not be inherited for non-dataclass derived classes (GH-6147) (GH-6148) by Miss Islington (bot) · 7 years ago
  35. 3c0a5a7 bpo-32056: Improve exceptions in aifc, wave and sunau. (GH-5951) by Miss Islington (bot) · 7 years ago
  36. fdd8e8b bpo-19417: Add test_bdb.py (GH-5217) by Miss Islington (bot) · 7 years ago
  37. 136905f bpo-32374: m_traverse may be called with m_state=NULL (GH-5140) by Miss Islington (bot) · 7 years ago
  38. 6e65e44 [3.7] bpo-32885: Tools/scripts/pathfix.py: Add -n option for no backup~ (GH-5772) (#6103) by Miss Islington (bot) · 7 years ago
  39. f216cbf bpo-33056 FIX leaking fd in concurrent.futures.ProcessPoolExecutor (GH-6084) (#6092) by Miss Islington (bot) · 7 years ago
  40. e32bbaf [3.7] bpo-17288: Prevent jumps from 'return' and 'exception' trace events. (GH-5928) by xdegaye · 7 years ago
  41. b4c8871 bpo-33064: lib2to3: support trailing comma after *args and **kwargs (GH-6096) (#6097) by Miss Islington (bot) · 7 years ago
  42. ff5d213 bpo-31804: Fix multiprocessing.Process with broken standard streams (GH-6079) (GH-6080) by Miss Islington (bot) · 7 years ago
  43. 04aadf2 [3.7] bpo-33026: Fix jumping out of "with" block by setting f_lineno. (GH-6026). (#6074) by Serhiy Storchaka · 7 years ago
  44. 5506d60 bpo-32836: Remove obsolete code from symtable pass (GH-5680) by Miss Islington (bot) · 7 years ago
  45. e8a5a92 bpo-27645: Add support for native backup facility of SQLite (GH-4238) by Miss Islington (bot) · 7 years ago
  46. bf0d116 bpo-33037: Skip sending/receiving after SSL transport closing (GH-6044) (GH-6057) by Miss Islington (bot) · 7 years ago
  47. 3c39beb bpo-32517: fix test_read_pty_output() hangs on macOS 10.13.2+ (GH-6037) by Miss Islington (bot) · 7 years ago
  48. 8c163bb bpo-33016: Fix potential use of uninitialized memory in nt._getfinalpathname (GH-6010) by Miss Islington (bot) · 7 years ago
  49. d824b4e bpo-32999: Fix ABC.__subclasscheck__ crash (GH-6002) by Miss Islington (bot) · 7 years ago
  50. c4d77a6 bpo-32969: Expose some missing constants in zlib and fix the doc (GH-5988) by Miss Islington (bot) · 7 years ago
  51. 112f799 bpo-33009: Fix inspect.signature() for single-parameter partialmethods. (GH-6004) by Miss Islington (bot) · 7 years ago
  52. 31e2b76 bpo-33005: Fix _PyGILState_Reinit() (GH-6001) by Miss Islington (bot) · 7 years ago
  53. 96fdbac bpo-33001: Prevent buffer overrun in os.symlink (GH-5989) by Miss Islington (bot) · 7 years ago
  54. fd340bf bpo-32984: IDLE - set __file__ for startup files (GH-5981) by Miss Islington (bot) · 7 years ago
  55. a5303dd bpo-32857: Raise error when tkinter after_cancel() is called with None. (GH-5701) by Miss Islington (bot) · 7 years ago
  56. 0902a2d bpo-32981: Fix catastrophic backtracking vulns (GH-5955) by Miss Islington (bot) · 7 years ago
  57. 6ae75d9 bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801) (#5945) by Miss Islington (bot) · 7 years ago
  58. 7e57634 bpo-32940: IDLE: Simplify StringTranslatePseudoMapping in pyparse (GH-5862) by Miss Islington (bot) · 7 years ago
  59. b0ef5c9 Update NEWS, docs, and patchlevel for 3.7.0b2 by Ned Deily · 7 years ago v3.7.0b2
  60. b7dcae3 Revert "bpo-31961: subprocess now accepts path-like args (GH-4329)" (GH-5912) (GH-5931) by Miss Islington (bot) · 7 years ago
  61. a7edca7 bpo-32901: update macOS 10.9+ installer to Tcl/Tk 8.6.8 by Ned Deily · 7 years ago
  62. 4c842b0 bpo-31453: Add setter for min/max protocol version (GH-5259) by Miss Islington (bot) · 7 years ago
  63. 89c2051 [3.7] bpo-32951: Disable SSLSocket/SSLObject constructor (GH-5864) (#5925) by Christian Heimes · 7 years ago
  64. 102d520 bpo-28124: deprecate ssl.wrap_socket() (GH-5888) by Miss Islington (bot) · 7 years ago
  65. 2614ed4 bpo-32947: OpenSSL 1.1.1-pre1 / TLS 1.3 fixes (GH-5663) by Miss Islington (bot) · 7 years ago
  66. a93e3dc bpo-32960: For dataclasses, disallow inheriting frozen from non-frozen classes and vice-versa, (GH-5919) (GH-5920) by Miss Islington (bot) · 7 years ago
  67. a9a8a98 bpo-32713: Fix tarfile.itn for large/negative float values. (GH-5434) by Miss Islington (bot) · 7 years ago
  68. 51d95ff bpo-32222: Fix pygettext skipping docstrings for funcs with arg typehints (GH-4745) by Miss Islington (bot) · 7 years ago
  69. 53d3f8a bpo-32394: Remove some TCP options on old version Windows. (GH-5523) by Miss Islington (bot) · 7 years ago
  70. a9e0b07 bpo-32922: dbm.open() now encodes filename with the filesystem encoding. (GH-5832) by Miss Islington (bot) · 7 years ago
  71. 4cffe2f bpo-32929: Dataclasses: Change the tri-state hash parameter to the boolean unsafe_hash. (GH-5891) (GH-5902) by Miss Islington (bot) · 7 years ago
  72. 632c1cb bpo-32622: Native sendfile on windows (GH-5565) by Miss Islington (bot) · 7 years ago
  73. 4cb3733 [3.7] bpo-32647: Link ctypes extension with libdl. (GH-5550) (#5874) by Miss Islington (bot) · 7 years ago
  74. ff7528f [3.7] bpo-31809: test secp ECDH curves (GH-4036) (#5872) by Miss Islington (bot) · 7 years ago
  75. b5655f3 bpo-17232: Clarify docs for -O and -OO command line options (GH-5839) by Miss Islington (bot) · 7 years ago
  76. 01d9c23 [3.7] bpo-30622: Improve NPN support detection (GH-5859) (#5860) by Miss Islington (bot) · 7 years ago
  77. 8fa8478 [3.7] bpo-24334: Cleanup SSLSocket (GH-5252) (#5857) by Miss Islington (bot) · 7 years ago
  78. e49bf0f bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754) by Miss Islington (bot) · 7 years ago
  79. 46632f4 [3.7] bpo-32819: Simplify and improve ssl.match_hostname (GH-5620) (#5847) by Miss Islington (bot) · 7 years ago
  80. 1c37e27 [bpo-28414] Make all hostnames in SSL module IDN A-labels (GH-5128) (GH-5843) by Miss Islington (bot) · 7 years ago
  81. f409c99 bpo-32916: IDLE: Change `str` to `code` in pyparse (GH-5830) by Miss Islington (bot) · 7 years ago
  82. 74b7364 bpo-32901: Update Tcl and Tk versions to 8.6.8 (GH-5823) by Miss Islington (bot) · 7 years ago
  83. 694c5e0 bpo-30028: make test.support.temp_cwd() fork-safe (GH-1066) by Miss Islington (bot) · 7 years ago
  84. e5a9b35 bpo-32457: Improves handling of denormalized executable path when launching Python (GH-5756) by Miss Islington (bot) · 7 years ago
  85. 01dd52f bpo-32556: nt._getfinalpathname, nt._getvolumepathname and nt._getdiskusage now correctly convert from bytes. (GH-5761) by Miss Islington (bot) · 7 years ago
  86. dfa1144 bpo-32905: IDLE - remove unused code in pyparse module (GH-5807) by Miss Islington (bot) · 7 years ago
  87. bc2e110 closes bpo-32898: Fix debug build crash with COUNT_ALLOCS (GH-5800) by Miss Islington (bot) · 7 years ago
  88. c59bc98 bpo-32874: IDLE: add tests for pyparse (GH-5755) by Miss Islington (bot) · 7 years ago
  89. 69607b4 bpo-32889: update valgrind suppressions (GH-5779) by Miss Islington (bot) · 7 years ago
  90. 1d927d4 bpo-31848: Fix broken error handling in Aifc_read.initfp() when the SSND chunk is not found (GH-5240) by Miss Islington (bot) · 7 years ago
  91. bab4fe3 closes bpo-32859: Don't retry dup3() if it is not available at runtime (GH-5708) by Miss Islington (bot) · 7 years ago
  92. a3d6c1b bpo-32409: Ensures activate.bat can handle Unicode contents (GH-5765) by Miss Islington (bot) · 7 years ago
  93. 2072c80 Improve error message for "setup.py upload" without dist files (GH-21060) by Miss Islington (bot) · 7 years ago
  94. 19b7f66 bpo-31972: Improve docstrings for pathlib classes (GH-5310) by Miss Islington (bot) · 7 years ago
  95. 2e84e47 bpo-25988: add NEWS entry for 3.7.0b2 (#5743) by Ned Deily · 8 years ago
  96. 3892899 bpo-31333: Re-implement ABCMeta in C (GH-5733) by Ivan Levkivskyi · 8 years ago
  97. afb5e55 bpo-32852: Fix trace changing sys.argv to tuple. (GH-5692) by Miss Islington (bot) · 8 years ago
  98. af6eaae bpo-32436: Add docs for contextvars (GH-5685) by Miss Islington (bot) · 8 years ago
  99. 8caee0f bpo-32841: Fix cancellation in awaiting asyncio.Condition (GH-5665) by Miss Islington (bot) · 8 years ago
  100. ef20abe bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995) by Miss Islington (bot) · 8 years ago