summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library
Commit message (Expand)AuthorAgeFilesLines
* bpo-43869: Time Epoch is the same on all platforms (GH-30664)Victor Stinner2022-01-191-0/+2
* bpo-40066: [Enum] skip failing doc test (GH-30637)Kumar Aditya2022-01-171-0/+2
* Revert "bpo-40066: [Enum] update str() and format() output (GH-30582)" (GH-3...Victor Stinner2022-01-171-2/+0
* bpo-40280: Change subprocess imports for cleaner error on wasm32 (GH-30620)Christian Heimes2022-01-171-0/+4
* bpo-40066: [Enum] update str() and format() output (GH-30582)Ethan Furman2022-01-161-0/+2
* bpo-46258: Streamline isqrt fast path (#30333)Mark Dickinson2022-01-151-0/+2
* bpo-46242: [Enum] better error message for extending `Enum` with members (GH-...Nikita Sobolev2022-01-141-0/+1
* Python 3.11.0a4v3.11.0a4Pablo Galindo2022-01-1344-87/+0
* bpo-46328: Add sys.exception() (GH-30514)Irit Katriel2022-01-131-0/+1
* bpo-40479: Fix hashlib's usedforsecurity for OpenSSL 3.0.0 (GH-30455)Christian Heimes2022-01-131-0/+2
* bpo-46342: make @typing.final introspectable (GH-30530)Jelle Zijlstra2022-01-121-0/+2
* bpo-46307: Add string.Template.get_identifiers() method (GH-30493)Ben Kehoe2022-01-111-0/+1
* bpo-46244: Remove __slots__ from typing.TypeVar, .ParamSpec (#30444)Arie Bovenberg2022-01-101-0/+2
* bpo-23882: unittest: Drop PEP 420 support from discovery. (GH-29745)Inada Naoki2022-01-101-0/+2
* bpo-46306: simplify `CodeType` attribute access in `doctest.py` (GH-30481)Nikita Sobolev2022-01-081-0/+2
* bpo-46070: Fix asyncio initialisation guard (GH-30423)Erlend Egeberg Aasland2022-01-071-0/+2
* bpo-41011: venv -- add more variables to pyvenv.cfg (GH-30382)andrei kulakov2022-01-071-0/+3
* Reflect 'context' arg in 'AbstractEventLoop.call_*()' methods (GH-30427)Andrew Svetlov2022-01-061-0/+2
* bpo-46266: Add calendar day of week constants to __all__ (GH-30412)Nikita Sobolev2022-01-051-0/+4
* bpo-46269: [Enum] remove special-casing of `__new__` in `EnumType.__dir__` (G...Nikita Sobolev2022-01-051-0/+1
* bpo-46257: Convert statistics._ss() to a single pass algorithm (GH-30403)Raymond Hettinger2022-01-051-0/+4
* bpo-20369: concurrent.futures.wait() now deduplicates futures given a… (GH-...Kumar Aditya2022-01-041-0/+1
* bpo-46239: improve error message when importing `asyncio.windows_events` (GH-...Nikita Sobolev2022-01-041-0/+2
* bpo-46238: reuse `_winapi` constants in `asyncio.windows_events` (GH-30352)Nikita Sobolev2022-01-041-0/+1
* bpo-44092: Don't reset statements/cursors before rollback (GH-26026)Erlend Egeberg Aasland2022-01-031-0/+3
* bpo-46222: posixmodule sendfile FreeBSD's constants updates. (GH-30327)David CARLIER2022-01-031-0/+1
* bpo-45615: Add missing test for printing traceback for non-exception. Fix tra...Irit Katriel2022-01-021-0/+1
* bpo-45321: Add missing error codes to module `xml.parsers.expat.errors` (GH-3...Sebastian Pipping2021-12-311-0/+1
* bpo-46118: Move importlib.resources to its own package. (#30176)Jason R. Coombs2021-12-311-0/+1
* bpo-43424: Deprecate `webbrowser.MacOSXOSAScript._name` attribute (GH-30241)Nikita Sobolev2021-12-301-0/+1
* bpo-46176: mmap module adding MAP_STACK constant. (GH-30252)David CARLIER2021-12-291-0/+1
* bpo-37295: Speed up math.comb(n, k) for 0 <= k <= n <= 67 (GH-30275)Mark Dickinson2021-12-281-0/+1
* bpo-22815: Print unexpected successes in summary in TextTestResult (GH-30138)Serhiy Storchaka2021-12-261-0/+2
* bpo-46032: Check types in singledispatch's register() at declaration time (GH...Serhiy Storchaka2021-12-251-0/+5
* bpo-42413: Replace `concurrent.futures.TimeoutError` and `asyncio.TimeoutErro...Kumar Aditya2021-12-191-0/+2
* bpo-46125: Refactor tests to test traversable API directly. Includes changes ...Jason R. Coombs2021-12-191-0/+2
* bpo-37578: glob.glob -- added include_hidden parameter (GH-30153)andrei kulakov2021-12-181-0/+3
* bpo-44893: Implement EntryPoint as simple class with attributes. (GH-30150)Jason R. Coombs2021-12-161-0/+3
* bpo-46105: Honor spec when generating requirement specs with urls and extras....Jason R. Coombs2021-12-161-0/+2
* bpo-22047: [argparse] deprecate nested argument groups and mutually exclusive...Irit Katriel2021-12-161-0/+3
* bpo-45755: [typing] Reveal class attributes of generic in generic aliases in ...Ken Jin2021-12-161-0/+3
* bpo-26952: [argparse] clearer error when formatting an empty mutually… (GH-...Irit Katriel2021-12-151-0/+1
* bpo-45643: Add signal.SIGSTKFLT on platforms where this is defined (GH-29266)Gareth Rees2021-12-131-0/+1
* bpo-16594: Add allow_reuse_port on socketserver (GH-30072)AN Long2021-12-131-0/+1
* bpo-27718: Fix help for the signal module (GH-30063)Serhiy Storchaka2021-12-131-0/+2
* bpo-45874: Handle empty query string correctly in urllib.parse.parse_qsl (#29...Christian Sattler2021-12-121-0/+3
* bpo-44674: Use unhashability as a proxy for mutability for default dataclass ...Eric V. Smith2021-12-111-0/+6
* bpo-46014: Add ability to use typing.Union with singledispatch (GH-30017)Yurii Karabas2021-12-101-0/+2
* bpo-27062: add `__all__` to inspect module (GH-30003)Kumar Aditya2021-12-101-0/+1
* bpo-46018: Ensure that math.expm1 does not raise on underflow (GH-29997)Steve Dower2021-12-091-0/+1