summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
Commit message (Expand)AuthorAgeFilesLines
* bpo-45434: Remove pystrhex.h header file (GH-28923)Victor Stinner2021-10-131-0/+4
* bpo-45433: Do not link libpython against libcrypt (GH-28881)Mike Gilbert2021-10-111-0/+2
* bpo-41123: Remove Py_UNICODE_COPY() and Py_UNICODE_FILL() (GH-28887)Victor Stinner2021-10-111-0/+5
* bpo-45434: Python.h no longer includes <stdlib.h> (GH-28888)Victor Stinner2021-10-111-0/+4
* bpo-45412: Remove Py_SET_ERRNO_ON_MATH_ERROR() macro (GH-28820)Victor Stinner2021-10-111-0/+10
* bpo-29410: Change the default hash algorithm to SipHash13. (GH-28752)Inada Naoki2021-10-101-0/+5
* Fix dataclassses spelling (GH-28837)Landon Yarrington2021-10-091-1/+1
* Remove draft notice on the 3.10 What's new document (GH-28806)Pablo Galindo Salgado2021-10-071-7/+0
* [doc] Fix typos found using codespell (GH-28744)Christian Clauss2021-10-051-2/+2
* bpo-41710: PyThread_acquire_lock_timed() uses sem_clockwait() (GH-28662)Victor Stinner2021-10-011-0/+10
* [docs] Use full names for time units (GH-28611)Serhiy Storchaka2021-09-292-6/+6
* [docs] Improve the markup of powers (GH-28598)Serhiy Storchaka2021-09-284-14/+14
* Fix typo in whatsnew: "ns" is 10^-9 secs and "us" is 10^-6 secs. (GH-28565)Jörn Heissler2021-09-281-2/+2
* bpo-21302: Add nanosleep() implementation for time.sleep() in Unix (GH-28545)Victor Stinner2021-09-251-3/+4
* bpo-43914: Whats New 310: add new SyntaxError attributes (GH-28558)Terry Jan Reedy2021-09-251-1/+6
* bpo-44019: Implement operator.call(). (GH-27888)Antony Lee2021-09-241-0/+8
* bpo-43760: Document PyThreadState.use_tracing removal (GH-28527)Victor Stinner2021-09-231-0/+3
* bpo-41137: Reorganize What's New in Python 3.11 (GH-28518)Victor Stinner2021-09-231-78/+77
* bpo-21302: time.sleep() uses waitable timer on Windows (GH-28483)Victor Stinner2021-09-221-3/+8
* bpo-45162: Remove many old deprecated unittest features (GH-28268)Serhiy Storchaka2021-09-172-2/+23
* bpo-5846: Deprecate obsolete methods in `unittest` (GH-28299)Erlend Egeberg Aasland2021-09-151-0/+15
* bpo-4356: Mention the new key arguments for the bisect module APIs in the 3.1...Pablo Galindo Salgado2021-09-141-0/+6
* closes bpo-45190: Update Unicode data to version 14.0.0. (GH-28336)Benjamin Peterson2021-09-141-0/+5
* bpo-45173 Remove configparser deprecations (GH-28292)Hugo van Kemenade2021-09-131-0/+7
* bpo-21302: Update time.sleep() doc for clock_nanosleep() (GH-28311)Victor Stinner2021-09-131-19/+27
* bpo-44987: Fix typo whatsnew 3.11 (GH-28293)Dong-hee Na2021-09-111-1/+1
* bpo-44987: Speed up unicode normalization of ASCII strings (GH-28283)Dong-hee Na2021-09-111-0/+3
* bpo-44964: Correct the note about the f_lasti field (GH-28208)Pablo Galindo Salgado2021-09-101-1/+2
* Fix minor typo in 3.10.rst (GH-28253)D.Lintin2021-09-091-1/+1
* bpo-38371: Remove deprecated `tkinter` split() method (GH-28237)Erlend Egeberg Aasland2021-09-081-0/+3
* bpo-44340: Update whatsnews for ThinLTO (GH-28229)Dong-hee Na2021-09-081-0/+3
* bpo-45129 Remove deprecated reuse_address (GH-28207)Hugo van Kemenade2021-09-081-0/+6
* bpo-45132 Remove deprecated __getitem__ methods (GH-28225)Hugo van Kemenade2021-09-081-0/+6
* bpo-39573: Py_TYPE becomes a static inline function (GH-28128)Victor Stinner2021-09-081-0/+28
* bpo-44964: Add a note explaining the new semantics of f_last_i in frame objec...Pablo Galindo Salgado2021-09-071-0/+6
* bpo-45124: Remove the bdist_msi command (GH-28195)Hugo van Kemenade2021-09-071-0/+3
* Add What's New for dataclass keyword-only parameters. (GH-28158)Eric V. Smith2021-09-041-1/+60
* bpo-42255: Deprecate webbrowser.MacOSX from Python 3.11 (GH-27837)Dong-hee Na2021-09-031-0/+4
* bpo-37330: open() no longer accept 'U' in file mode (GH-28118)Victor Stinner2021-09-021-0/+8
* bpo-45085: Remove the binhex module (GH-28117)Victor Stinner2021-09-021-0/+12
* bpo-40360: Deprecate the lib2to3 package (GH-28116)Victor Stinner2021-09-021-0/+3
* bpo-16379: expose SQLite error codes and error names in `sqlite3` (GH-27786)Erlend Egeberg Aasland2021-08-301-0/+6
* bpo-45000: Update whatsnews about deleting __debug__ (GH-27956)Dong-hee Na2021-08-262-2/+2
* bpo-45000: Raise SyntaxError when try to delete __debug__ (GH-27947)Dong-hee Na2021-08-251-0/+2
* bpo-38291: Update 3.10 WhatsNew with typing.{io|re} DeprecationWarning (GH-27...Ken Jin2021-08-231-0/+13
* bpo-24234: Implement bytes.__bytes__ (GH-27901)Dong-hee Na2021-08-231-0/+8
* bpo-41322: Add unit tests for deprecation of test return values (GH-27846)andrei kulakov2021-08-221-0/+4
* bpo-36384: [doc] Mention CVE-2021-29921 fix in 3.8.12 (GH-27824)Łukasz Langa2021-08-191-0/+13
* bpo-44874: deprecate Py_TRASHCAN_SAFE_BEGIN and Py_TRASHCAN_SAFE_END (GH-27693)Irit Katriel2021-08-181-0/+41
* bpo-42035: Add PyType_GetQualName() to get a type's qualified name. (GH-27551)Hai Shi2021-08-171-0/+3