summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Python 3.10.3v3.10.3Pablo Galindo2022-03-161-78/+100
* bpo-43253: Don't call shutdown() for invalid socket handles (GH-31892)Miss Islington (bot)2022-03-152-1/+9
* bpo-20392: Fix inconsistency with uppercase file extensions in mimetypes.gues...Miss Islington (bot)2022-03-152-6/+11
* Revert "bpo-46986: Upgrade bundled setuptools to 60.9.3 (GH-31820)" (GH-31880)Ned Deily2022-03-143-1/+1
* [3.10] bpo-47004: Sync with importlib_metadata 4.11.3. (GH-31854). (GH-31857)Jason R. Coombs2022-03-132-3/+40
* bpo-46986: Upgrade bundled setuptools to 60.9.3 (GH-31820)Miss Islington (bot)2022-03-133-1/+1
* [3.10] bpo-46985: Upgrade bundled pip to 22.0.4 (GH-31819) (GH-31849)Miss Islington (bot)2022-03-133-1/+1
* [3.10] bpo-46581: Propagate private vars via _GenericAlias.copy_with (GH-3106...Matt Bogosian2022-03-112-7/+27
* [3.10] bpo-46198: rename duplicate tests and remove unused code (GH-30297) (G...Jelle Zijlstra2022-03-109-14/+7
* bpo-24959: fix unittest.assertRaises bug where traceback entries are dropped ...Miss Islington (bot)2022-03-082-14/+94
* bpo-46955: Expose asyncio.base_events.Server as asyncio.Server (GH-31760)Miss Islington (bot)2022-03-081-1/+1
* bpo-44439: _ZipWriteFile.write() handle buffer protocol correctly (GH-29468)Miss Islington (bot)2022-03-082-1/+17
* [3.10] bpo-46940: Don't override existing AttributeError suggestion informati...Pablo Galindo Salgado2022-03-071-0/+18
* bpo-43292: Fix file leak in `ET.iterparse()` when not exhausted (GH-31696)Miss Islington (bot)2022-03-072-7/+17
* bpo-14156: Make argparse.FileType work correctly for binary file modes when a...Miss Islington (bot)2022-03-062-17/+106
* Lib/typing.py copy edits originating from GH-31061 (GH-31684)Miss Islington (bot)2022-03-051-3/+3
* bpo-25415: Remove confusing sentence from IOBase docstrings (PR-31631)Miss Islington (bot)2022-03-041-3/+2
* [3.10] bpo-46913: Fix test_ctypes, test_hashlib, test_faulthandler on UBSan (...Victor Stinner2022-03-042-8/+29
* bpo-46643: Fix stringized P.args/P.kwargs with get_type_hints (GH-31238)Miss Islington (bot)2022-03-032-1/+14
* [3.10] bpo-46633: Skip tests on ASAN and/or MSAN builds (GH-31632) (GH-31634)Victor Stinner2022-03-0214-49/+109
* bpo-46756: Fix authorization check in urllib.request (GH-31353)Miss Islington (bot)2022-02-252-8/+25
* bpo-46820: Refactor tests for ambiguous end of numerical literal (GH-31494)Miss Islington (bot)2022-02-251-89/+25
* Inherit asyncio proactor datagram transport from asyncio.DatagramTransport (G...Miss Islington (bot)2022-02-232-1/+3
* bpo-46827: pass sock.type to getaddrinfo in sock_connect (GH-31499)Miss Islington (bot)2022-02-222-1/+21
* bpo-46820: Fix a SyntaxError in a numeric literal followed by "not in" (GH-31...Miss Islington (bot)2022-02-221-0/+9
* bpo-46811: Make test suite support Expat >=2.4.5 (GH-31453) (GH-31472)Miss Islington (bot)2022-02-212-8/+15
* bpo-39327: Close file descriptors as soon as possible in shutil.rmtree (GH-31...Miss Islington (bot)2022-02-211-2/+10
* [3.10] bpo-43853: Expand test suite for SQLite UDF's (GH-27642) (GH-31030)Erlend Egeberg Aasland2022-02-211-63/+65
* bpo-46672: fix `NameError` in `asyncio.gather` if type check fails (GH-31187)...Miss Islington (bot)2022-02-202-1/+16
* [3.10] replace `self` param with more appropriate `cls` in classmethods (GH-3...Andrew Svetlov2022-02-201-2/+2
* [3.10] Raise TypeError if SSLSocket is passed to asyncio transport-based meth...Andrew Svetlov2022-02-202-10/+20
* bpo-46603: improve coverage of `typing._strip_annotations` (GH-31063)Miss Islington (bot)2022-02-191-0/+9
* Fix mistake in barry_as_FLUFL test (GH-31392)Miss Islington (bot)2022-02-181-1/+1
* [3.10] bpo-46333: Honor `module` parameter in ForwardRef (GH-30536) (GH-31379)Miss Islington (bot)2022-02-172-2/+15
* [3.10] bpo-46724: Use `JUMP_ABSOLUTE` for all backward jumps. (GH-31326) (GH-...Mark Shannon2022-02-161-2/+2
* bpo-46762: Fix an assert failure in f-strings where > or < is the last charac...Miss Islington (bot)2022-02-161-0/+2
* bpo-46741: Update `asyncio.protocols.BufferedProtocol` docstring (GH-31327) (...Miss Islington (bot)2022-02-151-4/+0
* bpo-46436: Fix command-line option -d/--directory in module http.server (GH-3...Miss Islington (bot)2022-02-141-13/+14
* bpo-45447: Add syntax highlighting for `.pyi` files in IDLE (GH-28950)Terry Jan Reedy2022-02-139-3/+75
* bpo-45948: Remove constructor discrepancy in C version of ElementTree.XMLPars...Miss Islington (bot)2022-02-121-0/+9
* bpo-46615: Don't crash when set operations mutate the sets (GH-31120)Miss Islington (bot)2022-02-111-0/+186
* [3.10] bpo-46433: _PyType_GetModuleByDef: handle static types in MRO (GH-3069...Petr Viktorin2022-02-111-0/+16
* bpo-46246: add missing __slots__ to importlib.metadata.DeprecatedList (GH-30452)Miss Islington (bot)2022-02-112-0/+7
* [3.10] Allow the parser to avoid nested processing of invalid rules (GH-31252...Pablo Galindo Salgado2022-02-101-1/+1
* [3.10] Fix warning: asyncio.events._event_loop_policy was modified by test_as...Andrew Svetlov2022-02-106-4/+28
* [3.10] bpo-46707: Avoid potential exponential backtracking in some syntax err...Pablo Galindo Salgado2022-02-101-0/+8
* bpo-45863: tarfile: don't zero out header fields unnecessarily (GH-29693)Miss Islington (bot)2022-02-092-6/+70
* bpo-46685: cover `TypeError` of `ForwardRef(1)` in `test_typing` (GH-31223)Miss Islington (bot)2022-02-091-0/+4
* bpo-46678: Fix Invalid cross device link in Lib/test/support/import_helper.py...Miss Islington (bot)2022-02-081-1/+2
* [3.10] bpo-46521: Fix codeop to use a new partial-input mode of the parser (G...Pablo Galindo Salgado2022-02-081-43/+11