summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-43867: multiprocessing Server catchs SystemExit (GH-25441)Victor Stinner2021-04-161-6/+14
* bpo-38530: Match exactly AttributeError and NameError when offering suggestio...Pablo Galindo2021-04-161-0/+15
* bpo-43843: libregrtest uses threading.excepthook (GH-25400)Victor Stinner2021-04-165-4/+86
* bpo-43842: Fix race condition in test_logging SMTP test (GH-25436)Victor Stinner2021-04-161-2/+5
* bpo-43844: Fix PendingDeprecationWarning in test_lib2to3 (GH-25407)Victor Stinner2021-04-161-4/+8
* bpo-41282: Fix distutils.utils.byte_compile() DeprecationWarning (GH-25406)Victor Stinner2021-04-163-7/+17
* bpo-40443: Remove unused imports (GH-25429)Victor Stinner2021-04-162-2/+0
* bpo-43822: Improve syntax errors for missing commas (GH-25377)Pablo Galindo2021-04-153-11/+26
* bpo-43744: [Enum] fix ``_is_private`` (GH-25349)Ethan Furman2021-04-152-2/+28
* [Enum] fix doc string (GH-25376)Ethan Furman2021-04-151-2/+4
* bpo-43846: Use less stack for large literals and calls (GH-25403)Mark Shannon2021-04-151-0/+26
* bpo-43823: Improve syntax errors for invalid dictionary literals (GH-25378)Pablo Galindo2021-04-151-0/+32
* bpo-43296: Handle sqlite3_value_blob() errors (GH-24674)Erlend Egeberg Aasland2021-04-141-0/+4
* bpo-38530: Make sure that failing to generate suggestions on failure will not...Pablo Galindo2021-04-141-0/+14
* bpo-41282: (PEP 632) Load install schemes from sysconfig (GH-24549)Lumír 'Frenzy' Balhar2021-04-142-38/+41
* bpo-38530: Offer suggestions on NameError (GH-25397)Pablo Galindo2021-04-141-0/+123
* bpo-43265: Improve sqlite3.Connection.backup error handling (GH-24586)Erlend Egeberg Aasland2021-04-141-4/+1
* bpo-43825: Fix deprecation warnings in test_cmd_line and test_collections (GH...Karthikeyan Singaravelan2021-04-142-2/+2
* bpo-43752: Fix sqlite3 regression for zero-sized blobs with converters (GH-25...Erlend Egeberg Aasland2021-04-141-1/+3
* bpo-43712 : fileinput: Add encoding parameter (GH-25272)Inada Naoki2021-04-142-29/+79
* bpo-38530: Offer suggestions on AttributeError (#16856)Pablo Galindo2021-04-141-0/+159
* bpo-43680: Deprecate io.OpenWrapper (GH-25357)Victor Stinner2021-04-143-15/+38
* bpo-43080: pprint for dataclass instances (GH-24389)Lewis Gaul2021-04-132-14/+123
* bpo-43797: Handle correctly invalid assignments inside function calls and gen...Pablo Galindo2021-04-132-2/+14
* bpo41515: Fix assert in test which throws SyntaxWarning. (#25379)Karthikeyan Singaravelan2021-04-131-1/+1
* bpo-43731: Add an `encoding` parameter to logging.fileConfig() (GH-25273)Inada Naoki2021-04-131-2/+3
* bpo-43787: Add __iter__ to GzipFile, BZ2File, and LZMAFile (GH-25353)Inada Naoki2021-04-133-0/+12
* Ensure that early = are not matched by the parser as invalid comparisons (GH-...Pablo Galindo2021-04-131-0/+5
* Remove an unnecessary copy of the 'namespace' parameter to make_dataclass(). ...Eric V. Smith2021-04-131-8/+13
* bpo-41515: Fix KeyError raised in get_type_hints (GH-25352)Karthikeyan Singaravelan2021-04-122-1/+10
* bpo-42904: Fix get_type_hints for class local namespaces (GH-24201)Ken Jin2021-04-122-2/+10
* bpo-43797: Improve syntax error for invalid comparisons (#25317)Pablo Galindo2021-04-128-64/+83
* bpo-42248: [Enum] ensure exceptions raised in ``_missing_`` are released (GH-...Ethan Furman2021-04-122-19/+56
* bpo-34311: Add locale.localize (GH-15275)Cédric Krier2021-04-122-3/+41
* bpo-43723: Fix deprecation error caused by thread.setDaemon() (GH-25361)Christian Heimes2021-04-123-4/+4
* bpo-41561: Fix testing with OpenSSL 1.0.2 (GH-25355)Christian Heimes2021-04-121-1/+4
* bpo-43680: _pyio.open() becomes a static method (GH-25354)Victor Stinner2021-04-121-11/+9
* bpo-43723: Deprecate camelCase aliases from threading (GH-25174)Jelle Zijlstra2021-04-122-12/+99
* bpo-43785: Improve BZ2File performance by removing RLock (GH-25299)Inada Naoki2021-04-121-59/+44
* bpo-43682: Make staticmethod objects callable (GH-25117)Victor Stinner2021-04-112-5/+9
* bpo-42967: coerce bytes separator to string in urllib.parse_qs(l) (#24818)Ken Jin2021-04-112-0/+5
* bpo-43751: Fix anext() bug where it erroneously returned None (GH-25238)Dennis Sweeney2021-04-111-5/+135
* bpo-43772: Fix TypeVar.__ror__ (GH-25339)Jelle Zijlstra2021-04-112-2/+12
* bpo-43783: Add ParamSpecArgs/Kwargs (GH-25298)Jelle Zijlstra2021-04-112-7/+62
* bpo-43764: Add match_args=False parameter to dataclass decorator and to make_...Eric V. Smith2021-04-112-14/+65
* bpo-43798: Add source location attributes to alias (GH-25324)Matthew Suozzo2021-04-103-5/+29
* bpo-43478: Restrict use of Mock objects as specs (GH-25326)Matthew Suozzo2021-04-103-8/+64
* bpo-39899: Don't double-check directory name if we're requesting the current ...Barney Gale2021-04-091-8/+9
* bpo-40107: Switch to using io.open() for pathlib.Path.open() (GH-25240)Barney Gale2021-04-091-7/+3
* bpo-43794: OpenSSL 3.0.0: set OP_IGNORE_UNEXPECTED_EOF by default (GH-25309)Christian Heimes2021-04-091-1/+3