Python 3.6.5rc1
  1. f03c514 3.6.5rc1 by Ned Deily · 7 years ago v3.6.5rc1
  2. 9455244 bpo-32726: macOS installer changes for 3.6.5 by Ned Deily · 7 years ago
  3. cad3eb2 lib2to3: Add more tests (GH-6101) (#6109) by Miss Islington (bot) · 7 years ago
  4. cf61a81 [3.7] bpo-17288: Prevent jumps from 'return' and 'exception' trace events. (GH-5928) by Miss Islington (bot) · 7 years ago
  5. 6a526f6 bpo-33064: lib2to3: support trailing comma after *args and **kwargs (GH-6096) (#6098) by Miss Islington (bot) · 7 years ago
  6. 069b8d2 [3.6] bpo-31804: Fix multiprocessing.Process with broken standard streams (GH-6079) (GH-6081) by Antoine Pitrou · 7 years ago
  7. 20ac11a [3.6] bpo-33026: Fix jumping out of "with" block by setting f_lineno. (GH-6026). (GH-6074) (GH-6075) by Miss Islington (bot) · 7 years ago
  8. 3f439d1 bpo-33045: Fix typos in SSL documentation (GH-6065) by Miss Islington (bot) · 7 years ago
  9. d082634 [3.7] bpo-33041: Add missed error checks when compile "async for" (GH-6053) (GH-6060) by Miss Islington (bot) · 7 years ago
  10. 017e9fd [3.6] bpo-33037: Skip sending/receiving after SSL transport closing (GH-6044) (GH-6058) by Andrew Svetlov · 7 years ago
  11. de8567e bpo-26701: Improve documentation for the rounding special methods. (GH-6054) by Miss Islington (bot) · 7 years ago
  12. 1028ca4 bpo-26701: Add documentation for __trunc__ (GH-6050) by Miss Islington (bot) · 7 years ago
  13. 19b42fe Warn that compile() can crash when compiling to an AST object (GH-6043) (GH-6046) by Miss Islington (bot) · 7 years ago
  14. b316c44 bpo-32758: Warn that ast.parse() and ast.literal_eval() can segfault the interpreter (GH-5960) (GH-6042) by Miss Islington (bot) · 7 years ago
  15. 3f7d0b6 controlflow: Use full example for "5 through 9" (GH-5907) by Miss Islington (bot) · 7 years ago
  16. 12f74d8 bpo-32517: fix test_read_pty_output() hangs on macOS 10.13.2+ (GH-6037) by Nathan Henrie · 7 years ago
  17. 32efcd1 bpo-33016: Fix potential use of uninitialized memory in nt._getfinalpathname (GH-6032) by Steve Dower · 7 years ago
  18. 2f3ba27 [3.6] bpo-30353: Fix pass by value for structs on 64-bit Cygwin/MinGW (GH-1559) (GH-5954) by Miss Islington (bot) · 7 years ago
  19. 15425cf Fix some ipaddress documentation errors (GH-6021) by Miss Islington (bot) · 7 years ago
  20. 7592c0a bpo-32969: Expose some missing constants in zlib and fix the doc (GH-5988) by Miss Islington (bot) · 7 years ago
  21. 387a055 bpo-33009: Fix inspect.signature() for single-parameter partialmethods. (GH-6004) by Miss Islington (bot) · 7 years ago
  22. baa4507 [3.6] bpo-33001: Prevent buffer overrun in os.symlink (GH-5989) (GH-5990) by Steve Dower · 7 years ago
  23. 6935a51 bpo-32984: IDLE - set __file__ for startup files (GH-5981) by Miss Islington (bot) · 7 years ago
  24. 73a4396 bpo-32857: Raise error when tkinter after_cancel() is called with None. (GH-5701) by Miss Islington (bot) · 7 years ago
  25. c951675 [3.6] bpo-32981: Fix catastrophic backtracking vulns (GH-5955) by Benjamin Peterson · 7 years ago
  26. bd92cfe Fix missing coroutine declaration in the asyncio documentation. (GH-5964) by Miss Islington (bot) · 7 years ago
  27. fbdd075 [3.6] bpo-32964: Reuse a testing implementation of the path protocol in tests. (GH-5930). (GH-5958) by Serhiy Storchaka · 7 years ago
  28. 10fb1bf bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801) (#5946) by Miss Islington (bot) · 7 years ago
  29. 32f5392 bpo-32940: IDLE: Simplify StringTranslatePseudoMapping in pyparse (GH-5862) by Miss Islington (bot) · 7 years ago
  30. 8c65360 bpo-30928: Update idlelib/NEWS.txt, possibly for 3.7.0b2 (GH-5932) by Miss Islington (bot) · 7 years ago
  31. 5bf7485 [3.6] bpo-32922: dbm.open() now encodes filename with the filesystem encoding. (GH-5832). (GH-5906) by Serhiy Storchaka · 7 years ago
  32. 3f6c172 bpo-32713: Fix tarfile.itn for large/negative float values. (GH-5434) by Miss Islington (bot) · 7 years ago
  33. ec5569b bpo-32222: Fix pygettext skipping docstrings for funcs with arg typehints (GH-4745) by Miss Islington (bot) · 7 years ago
  34. e650fd3 Fix _socket module compilation on Cygwin. (GH-4137) (GH-4145) by Miss Islington (bot) · 7 years ago
  35. 86ea851 Revert "[3.6] bpo-32303 - Consistency fixes for namespace loaders (GH-5481) (#5504)" (#5911) by Barry Warsaw · 7 years ago
  36. 1278c21 [3.6] bpo-32394: Remove some TCP options on older version Windows. (GH-5585) by animalize · 7 years ago
  37. fbf7aac bpo-18533: Avoid RecursionError from repr() of recursive dictview (GH-4823) by Miss Islington (bot) · 7 years ago
  38. 5a07608 bpo-31454: Include information about "import X as Y" in Modules tutorial (GH-4041) by Miss Islington (bot) · 7 years ago
  39. b9678d3 bpo-25059: Clarify the print separator usage in tutorial (GH-5879) by Miss Islington (bot) · 7 years ago
  40. 8f2bcab Delete a broken threading.local example (GH-5870) by Miss Islington (bot) · 7 years ago
  41. a79591c [3.6] bpo-30622: Fix NPN for OpenSSL 1.1.1-pre1 (GH-5876) (#5881) by Christian Heimes · 7 years ago
  42. 192bff4 [3.6] bpo-32647: Link ctypes extension with libdl. (GH-5550) (#5875) by Miss Islington (bot) · 7 years ago
  43. 48707a1 [3.6] bpo-30622: Improve NPN support detection (GH-5859) (#5861) by Christian Heimes · 7 years ago
  44. e9370a4 bpo-32185: Don't send IP in SNI TLS extension (#5865) by Christian Heimes · 7 years ago
  45. fc9471a bpo-17232: Clarify docs for -O and -OO command line options (GH-5839) by Miss Islington (bot) · 7 years ago
  46. aab2258 bpo-31518: Change TLS protocol for Debian (#3660) by Christian Heimes · 7 years ago
  47. 980790e bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754) by Miss Islington (bot) · 7 years ago
  48. cd2112f bpo-32916: IDLE: Change `str` to `code` in pyparse (GH-5830) by Miss Islington (bot) · 7 years ago
  49. cffe046 bpo-32923: Unittest doc: replace `whilst` with `while` (GH-5833) by Miss Islington (bot) · 7 years ago
  50. 9c819a6 [3.6] bpo-30028: make test.support.temp_cwd() fork-safe (GH-1066) (GH-5826) by Anselm Kruis · 7 years ago
  51. dd52d5c bpo-32087: Doc: Make "deprecated-removed" directive translatable (GH-4473) by Miss Islington (bot) · 7 years ago
  52. 1d3c518 bpo-32457: Improves handling of denormalized executable path when launching Python (GH-5756) (#5818) by Steve Dower · 7 years ago
  53. 6eab93c bpo-30449: Improve __slots__ documentation (GH-1819) by Miss Islington (bot) · 7 years ago
  54. d8e7b98 bpo-32905: IDLE - remove unused code in pyparse module (GH-5807) by Miss Islington (bot) · 7 years ago
  55. 52064c3 bpo-32874: IDLE: add tests for pyparse (GH-5755) by Miss Islington (bot) · 7 years ago
  56. 1e8bc25 bpo-32889: update valgrind suppressions (GH-5779) by Miss Islington (bot) · 7 years ago
  57. f8a794c bpo-32008: don't use PROTOCOL_TLSv1 in example (GH-5789) by Miss Islington (bot) · 7 years ago
  58. 0150dc5 bpo-28886: doc: Move deprecated abc decorators to separate section (GH-176) by Miss Islington (bot) · 7 years ago
  59. 16de2a9 closes bpo-32859: Don't retry dup3() if it is not available at runtime (GH-5708) by Miss Islington (bot) · 7 years ago
  60. 76c3f5e bpo-32540: Update venv documentation (GH-5736) by Miss Islington (bot) · 7 years ago
  61. 2b9726e 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
  62. 6ae87ca bpo-32500: Correct the documentation for PySequence_Size() and PySequence_Length() (GH-5767) by Miss Islington (bot) · 7 years ago
  63. 8e149ff bpo-32409: Ensures activate.bat can handle Unicode contents (GH-5766) by Miss Islington (bot) · 7 years ago
  64. ef0bb5c bpo-30121: Fix test_subprocess for Windows Debug builds (GH-5758) by Miss Islington (bot) · 7 years ago
  65. b0fd935 bpo-32682: Improve libz version parsing in test_zilb (GH-5347) by Miss Islington (bot) · 7 years ago
  66. 2a93fae Improve error message for "setup.py upload" without dist files (GH-21060) by Miss Islington (bot) · 7 years ago
  67. 5c81ed4 bpo-31972: Improve docstrings for pathlib classes (GH-5310) by Miss Islington (bot) · 7 years ago
  68. ea49c03 [3.6] Clean up Travis config (GH-5727) by Zachary Ware · 7 years ago
  69. 65a13c1 bpo-32869: Fix incorrect dst buffer size for MultiByteToWideChar (GH-5739) by Miss Islington (bot) · 7 years ago
  70. 17ca4e1 [3.6] Improves the ability to build in CI (GH-5730) by Steve Dower · 8 years ago
  71. c1b8aed [3.6] bpo-30638: Add clinic to `make regen-all` (GH-5671) by Zachary Ware · 8 years ago
  72. dda9386 bpo-32852: Fix trace changing sys.argv to tuple. (GH-5692) by Miss Islington (bot) · 8 years ago
  73. f2d2e61 DOC: fix documentation for copyright and credits (GH-5706) by Miss Islington (bot) · 8 years ago
  74. 76591bc bpo-32860: Fix a missing asterisk in the documentation for glob.iglob() (GH-5712) by Miss Islington (bot) · 8 years ago
  75. f62a9d4 Update comment in posixmodule.c (GH-5681) by Miss Islington (bot) · 8 years ago
  76. a23eeca bpo-32841: Fix cancellation in awaiting asyncio.Condition (GH-5665) (GH-5683) by Miss Islington (bot) · 8 years ago
  77. 2be5435 [3.6] remove mercurial dot files (GH-5558) by Benjamin Peterson · 8 years ago
  78. 1b9bbbc Fix installation instructions for *nix (GH-5605) by Miss Islington (bot) · 8 years ago
  79. b93a52b bpo-27846: Delete incorrect note in base64 docs (GH-5666) by Miss Islington (bot) · 8 years ago
  80. 5d0d0ea bpo-31787: Skip refleak check when _hashlib is not available (GH-5660) by Miss Islington (bot) · 8 years ago
  81. 4731634 bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995) by INADA Naoki · 8 years ago
  82. 310b424 bpo-32827: Fix usage of _PyUnicodeWriter_Prepare() in decoding errors handler. (GH-5636) by Miss Islington (bot) · 8 years ago
  83. c3f9d7e [3.6] bpo-32370: Use the correct encoding for ipconfig output in the uuid module. (GH-5608). (#5654) by Serhiy Storchaka · 8 years ago
  84. 9fad857 bpo-32837: IDLE - require encoding argument for textview.view_file. (GH-5646) by Miss Islington (bot) · 8 years ago
  85. 46daf39 bpo-32826: Add "encoding=utf-8" to open() in idle_test/test_help_about. (GH-5639) by Miss Islington (bot) · 8 years ago
  86. a1d33f7 bpo-29248: Fix os.readlink() on Windows (GH-5577) by Miss Islington (bot) · 8 years ago
  87. 6708be7 bpo-32720: Fixed the replacement field grammar documentation. (GH-5544) (GH-5547) by Miss Islington (bot) · 8 years ago
  88. 743b6c0 Fix typo in Include/objimpl.h, the word "has" was missing (GH-5568) (GH-5570) by Miss Islington (bot) · 8 years ago
  89. db1de75 Fix AppVeyor doc short-circuit (GH-5634) by Miss Islington (bot) · 8 years ago
  90. 7574a1a [3.6] Add short-circuit for doc changes to AppVeyor (GH-5628) by Zachary Ware · 8 years ago
  91. 9d8c24b bpo-32800: Update link to w3c doc for xml default namespaces (GH-5609) GH-5612) by Miss Islington (bot) · 8 years ago
  92. 504f191 [3.6] bpo-30157: Fix csv.Sniffer.sniff() regex pattern. (GH-5601) (GH-5603) by Serhiy Storchaka · 8 years ago
  93. 3d4a174 [3.6] Make formatting of some return codes conforming to the general style. (GH-5587). (GH-5598) by Serhiy Storchaka · 8 years ago
  94. fe92c44 bpo-32802: Fix Travis build (GH-5589) (GH-5591) by Miss Islington (bot) · 8 years ago
  95. 7f95c8c bpo-6135: Fix subprocess.check_output doc to mention changes in 3.6 (GH-5564) (GH-5573) by Miss Islington (bot) · 8 years ago
  96. b90c685 bpo-32777: Fix _Py_set_inheritable async-safety in subprocess (GH-5560) (GH-5563) by Miss Islington (bot) · 8 years ago
  97. 7bd5a75 bpo-30928: IDLE - update NEWS.txt [GH-5539] (GH-5545) by Terry Jan Reedy · 8 years ago
  98. a8c25d1 [3.6] bpo-8722: Document __getattr__ behavior with AttributeError in property (GH-5542) by Miss Islington (bot) · 8 years ago
  99. 1c2b138 bpo-32765: Update configdialog General tab create page docstring (GH-5529) (GH-5538) by Miss Islington (bot) · 8 years ago
  100. 231fa23 Fix typo -- missing "not" (GH-5528) (GH-5531) by Miss Islington (bot) · 8 years ago