summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library
Commit message (Expand)AuthorAgeFilesLines
* bpo-38352: Add to typing.__all__ (#25821)Jelle Zijlstra2021-05-041-0/+2
* bpo-40465: Remove random module features deprecated in 3.9 (GH-25874)Raymond Hettinger2021-05-041-0/+1
* bpo-43666: Lib/_aix_support.py routines may fail in a WPAR environment (GH-25...Michael Felt2021-05-041-0/+6
* bpo-44018: random.seed() no longer mutates its inputs (GH-25856)Raymond Hettinger2021-05-031-0/+1
* bpo-44011: Revert "New asyncio ssl implementation (GH-17975)" (GH-25848)Pablo Galindo2021-05-031-2/+0
* bpo-44015: dataclasses should allow KW_ONLY to be specified only once per cla...Eric V. Smith2021-05-031-0/+1
* bpo-25478: Add total() method to collections.Counter (GH-25829)Raymond Hettinger2021-05-031-0/+2
* bpo-44011: New asyncio ssl implementation (#17975)Andrew Svetlov2021-05-021-0/+2
* bpo-43926: Cleaner metadata with PEP 566 JSON support. (GH-25565)Jason R. Coombs2021-05-021-0/+4
* bpo-32745: Fix a regression in the handling of ctypes' c_wchar_p type (#8721)Zackery Spytz2021-05-021-0/+3
* bpo-43733: netrc try to use UTF-8 before using locale encoding. (GH-25781)Inada Naoki2021-05-021-0/+2
* bpo-43993: Update vendored pip to 21.1.1 (GH-25761)Stéphane Bidoul2021-05-011-0/+1
* bpo-42269: Add slots parameter to dataclass decorator (GH-24171)Yurii Karabas2021-05-011-0/+3
* bpo-43979: Remove unnecessary operation from urllib.parse.parse_qsl (GH-25756)Dong-hee Na2021-04-301-0/+2
* bpo-43817: Add inspect.get_annotations(). (#25522)larryhastings2021-04-301-0/+11
* bpo-41139: Deprecate `cgi.log()` (GH-25625)Inada Naoki2021-04-291-0/+1
* bpo-43757: Make pathlib use os.path.realpath() to resolve symlinks in a path ...Barney Gale2021-04-281-0/+3
* bpo-41559: Change PEP 612 implementation to pure Python (#25449)Ken Jin2021-04-281-0/+6
* bpo-43776: Remove list call from args in Popen repr (GH-25338)M. Kocher2021-04-281-0/+1
* bpo-41486: Faster bz2/lzma/zlib via new output buffering (GH-21740)Ma Lin2021-04-281-0/+4
* bpo-43957: [Enum] Deprecate ``TypeError`` from containment checks. (GH-25670)Ethan Furman2021-04-271-0/+4
* bpo-8978: improve tarfile.open error message when lzma / bz2 are missing (GH-...Anthony Sottile2021-04-271-0/+2
* bpo-43766: Implement PEP 647 (User-Defined Type Guards) in typing.py (#25282)Ken Jin2021-04-271-0/+2
* bpo-43312: Functions returning default and preferred sysconfig schemes (GH-24...Tzu-ping Chung2021-04-271-0/+3
* Fix thread locks in zlib module may go wrong in rare case. (#22126)Ma Lin2021-04-271-0/+1
* bpo-43945: [Enum] Deprecate non-standard mixin format() behavior (GH-25649)Ethan Furman2021-04-271-0/+2
* bpo-42904: Change search order of typing.get_type_hints eval (#25632)Ken Jin2021-04-261-0/+5
* bpo-18233: Add internal methods to access peer chain (GH-25467)Christian Heimes2021-04-261-0/+2
* Add keyword-only fields to dataclasses. (GH=25608)Eric V. Smith2021-04-261-0/+2
* bpo-43534: Fix the turtle module working with multiple root windows (GH-25591)Serhiy Storchaka2021-04-251-0/+1
* bpo-38490: statistics: Add covariance, Pearson's correlation, and simple line...Tymoteusz Wołodźko2021-04-251-0/+1
* bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-...Serhiy Storchaka2021-04-251-0/+9
* bpo-43534: Make dialogs in turtle.textinput() and turtle.numinput() transitie...Serhiy Storchaka2021-04-251-0/+2
* bpo-43655: Tkinter and IDLE dialog windows are now recognized as dialogs by w...Serhiy Storchaka2021-04-251-0/+2
* bpo-43930: Update bundled pip to 21.1 and setuptools to 56.0.0 (GH-25576)Stéphane Bidoul2021-04-241-0/+1
* bpo-43780: Sync with importlib_metadata 3.10 (GH-25297)Jason R. Coombs2021-04-241-0/+3
* bpo-31870: Add a timeout parameter to ssl.get_server_certificate() (GH-22270)Zackery Spytz2021-04-241-0/+2
* bpo-43907: add missing memoize call in pure python pickling of bytearray (GH-...Carl Friedrich Bolz-Tereick2021-04-231-0/+4
* bpo-39950: add `pathlib.Path.hardlink_to()` method that supersedes `link_to()...Barney Gale2021-04-231-0/+2
* bpo-43607: Fix urllib handling of Windows paths with \\?\ prefix (GH-25539)Steve Dower2021-04-231-0/+2
* bpo-35114: Make ssl.RAND_status() return a bool (GH-20063)Zackery Spytz2021-04-231-0/+2
* bpo-41282: (PEP 632) Deprecate distutils.sysconfig (partial implementation of...Lumír 'Frenzy' Balhar2021-04-231-0/+1
* bpo-43920: Make load_verify_locations(cadata) error message consistent (GH-25...Christian Heimes2021-04-231-0/+2
* bpo-43284: Update platform.win32_ver to use _syscmd_ver instead of sys.getwin...Shreyan Avigyan2021-04-221-0/+6
* bpo-38659: [Enum] add _simple_enum decorator (GH-25497)Ethan Furman2021-04-211-0/+4
* Revert "bpo-38659: [Enum] add _simple_enum decorator (GH-25285)" (GH-25476)Ethan Furman2021-04-201-4/+0
* bpo-38659: [Enum] add _simple_enum decorator (GH-25285)Ethan Furman2021-04-201-0/+4
* bpo-40849: Expose X509_V_FLAG_PARTIAL_CHAIN ssl flag (GH-20463)l0x2021-04-191-0/+1
* bpo-43880: Show DeprecationWarnings for deprecated ssl module features (GH-25...Christian Heimes2021-04-191-0/+3
* bpo-42854: Use SSL_read/write_ex() (GH-25468)Christian Heimes2021-04-191-0/+4