summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Revert "bpo-43510: PEP 597: Accept `encoding="locale"` in binary mode (GH-251...Inada Naoki2021-03-312-12/+1
* bpo-43510: PEP 597: Accept `encoding="locale"` in binary mode (GH-25103)Inada Naoki2021-03-312-1/+12
* bpo-42225: IDLE - document two unix-related problems. (#25078)Terry Jan Reedy2021-03-311-7/+20
* bpo-40066: Enum: modify `repr()` and `str()` (GH-22392)Ethan Furman2021-03-3110-170/+228
* bpo-43399: Fix ElementTree.extend not working on iterators (GH-24751)Alex Prengère2021-03-302-1/+4
* bpo-42134: Raise ImportWarning when calling find_module() in the import syste...Brett Cannon2021-03-304-6/+20
* bpo-43125: Fix: return expected type (str), not original value (bytes) in ema...Grégory Starck2021-03-302-3/+2
* bpo-43660: Fix crash when displaying exceptions with custom values for sys.st...Pablo Galindo2021-03-291-0/+15
* bpo-43659: Fix test_curses on AIX (GH-25074)Michael Felt2021-03-291-0/+1
* bpo-35930: Raising an exception raised in a "future" instance will create ref...Jesús Cea2021-03-291-15/+23
* bpo-43433: Preserve query and fragment in the URL of the server in ServerProx...Serhiy Storchaka2021-03-292-3/+43
* bpo-42988: Remove the pydoc getfile feature (GH-25015)Victor Stinner2021-03-292-24/+0
* bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)Inada Naoki2021-03-2915-15/+93
* bpo-25643: Refactor the C tokenizer into smaller, logical units (GH-25050)Pablo Galindo2021-03-282-2/+19
* bpo-43562: fix test_ssl to skip on unreachable network (GH-24937)Carl Meyer2021-03-271-0/+2
* bpo-40645: use C implementation of HMAC (GH-24920)Christian Heimes2021-03-273-80/+121
* bpo-42136: Deprecate module_repr() as found in importlib (GH-25022)Brett Cannon2021-03-266-8/+38
* bpo-41064: Improve syntax error for invalid usage of '**' in f-strings (GH-25...Pablo Galindo2021-03-241-0/+9
* bpo-42137: have ModuleType.__repr__ prefer __spec__ over module_repr() (GH-24...Brett Cannon2021-03-243-23/+8
* bpo-42914: add a pprint underscore_numbers option (GH-24864)sblondon2021-03-242-6/+28
* bpo-31861: Add aiter and anext to builtins (#23847)Joshua Bronson2021-03-232-0/+85
* bpo-41718: runpy now imports pkgutil in functions (GH-24996)Victor Stinner2021-03-231-1/+2
* bpo-41718: subprocess imports grp and pwd on demand (GH-24987)Victor Stinner2021-03-232-24/+23
* bpo-41718: libregrtest avoids importing datetime (GH-24985)Victor Stinner2021-03-232-5/+6
* bpo-41718: Disable support.testresult XML output by default (GH-24982)Victor Stinner2021-03-232-7/+22
* bpo-41718: libregrtest runtest avoids import_helper (GH-24983)Victor Stinner2021-03-231-2/+4
* bpo-41718: Reduce libregrtest runtest imports (GH-24980)Victor Stinner2021-03-223-97/+107
* bpo-41718: regrtest saved_test_environment avoids imports (GH-24934)Victor Stinner2021-03-222-42/+69
* bpo-43555: Report the column offset for invalid line continuation character (...Pablo Galindo2021-03-221-0/+5
* bpo-43591: Fix error location in interactive mode for errors at the end of th...Pablo Galindo2021-03-221-2/+8
* bpo-35134: Add include/cpython/compile.h (GH-24922)Hai Shi2021-03-221-1/+1
* bpo-43420: Simple optimizations for Fraction's arithmetics (GH-24779)Sergey B Kirpichev2021-03-222-9/+118
* bpo-43422: Revert _decimal C API addition (GH-24960)Antoine Pitrou2021-03-211-176/+0
* bpo-43577: Fix deadlock with SSLContext._msg_callback and sni_callback (GH-24...Christian Heimes2021-03-211-0/+22
* bpo-43542: Add heif/heic formats in mimetypes (GH-24917)Ilya Stepin2021-03-201-0/+2
* bpo-43517: Fix false positive in detection of circular imports (#24895)Antoine Pitrou2021-03-203-1/+78
* bpo-41561: Add workaround for Ubuntu's custom security level (GH-24915)Christian Heimes2021-03-181-0/+29
* bpo-43521: Allow ast.unparse with empty sets and NaN (GH-24897)Kodi Arfer2021-03-182-9/+26
* bpo-39342: Expose X509_V_FLAG_ALLOW_PROXY_CERTS in ssl module (GH-18011)Chris Burr2021-03-181-0/+2
* bpo-42128: Add 'missing :' syntax error message to match statements (GH-24733)Pablo Galindo2021-03-181-0/+36
* bpo-35883: Py_DecodeLocale() escapes invalid Unicode characters (GH-24843)Victor Stinner2021-03-171-26/+60
* bpo-43497: Emit SyntaxWarnings for assertions with tuple constants. (GH-24867)tsukasa-au2021-03-161-2/+28
* bpo-41933: Clarify wording for s * n in Common Sequence Operations (GH-22570)Chavdar Yotov2021-03-151-2/+2
* bpo-43285 Make ftplib not trust the PASV response. (GH-24838)Gregory P. Smith2021-03-152-3/+35
* Mark POP_TOP at end of expression statement as artificial, to conform to PEP ...Mark Shannon2021-03-151-0/+8
* bpo-43428: Improve documentation for importlib.metadata changes. (GH-24858)Jason R. Coombs2021-03-151-2/+18
* bpo-29982: Add "ignore_cleanup_errors" param to tempfile.TemporaryDirectory()...CAM Gerlach2021-03-142-12/+102
* bpo-39316: Make sure that attribute accesses and stores, including method cal...Mark Shannon2021-03-141-0/+45
* bpo-43410: Fix crash in the parser when producing syntax errors when reading ...Pablo Galindo2021-03-141-1/+8
* bpo-43245: Add keyword argument support to ChainMap.new_child() (GH-24788)Kamil Turek2021-03-142-2/+9