summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-46219, 46221: simplify except* implementation following exc_info changes....Irit Katriel2022-01-022-1/+30
* argparse docs: prog default is the basename of argv[0] (GH-30298)Jade Lovelace2022-01-021-1/+2
* bpo-46218: Change long_pow() to sliding window algorithm (GH-30319)Tim Peters2022-01-021-0/+22
* bpo-45615: Add missing test for printing traceback for non-exception. Fix tra...Irit Katriel2022-01-022-1/+21
* bpo-46118: Move importlib.resources to its own package. (#30176)Jason R. Coombs2021-12-3112-368/+408
* bpo-46178: Remove/rename redundant Travis CI code (#30309)Hugo van Kemenade2021-12-311-12/+0
* bpo-45853: Fix misspelling and unused import in pathlib (GH-30292)andrei kulakov2021-12-301-3/+3
* bpo-43424: Deprecate `webbrowser.MacOSXOSAScript._name` attribute (GH-30241)Nikita Sobolev2021-12-302-7/+21
* bpo-46055: Speed up binary shifting operators (GH-30044)Xinhang Xu2021-12-271-2/+61
* bpo-45496: Allow flexibility in winfo_rgb tests (GH-30185)E-Paine2021-12-261-2/+9
* bpo-43413: Revert changes in set.__init__ (GH-28403)Serhiy Storchaka2021-12-261-2/+5
* bpo-22815: Print unexpected successes in summary in TextTestResult (GH-30138)Serhiy Storchaka2021-12-262-8/+38
* bpo-23819: Fix asyncio tests on python optimized mode (GH-30195)Kumar Aditya2021-12-264-4/+8
* bpo-46032: Check types in singledispatch's register() at declaration time (GH...Serhiy Storchaka2021-12-252-5/+84
* bpo-46150: ensure `fakeuser` does not exist in `PosixPathTest.test_expanduser...Nikita Sobolev2021-12-241-5/+13
* Allow test_pathlib to pass on systems where fakeuser exists. (GH-30244)Gregory P. Smith2021-12-241-1/+1
* bpo-46107: ExceptionGroup.subgroup()/split() should copy __note__ to the part...Irit Katriel2021-12-211-1/+3
* bpo-46110: Add a recursion check to avoid stack overflow in the PEG parser (G...Pablo Galindo Salgado2021-12-201-0/+8
* bpo-23819: Get rid of assert statements in test_asyncio (GH-30212)Serhiy Storchaka2021-12-2010-63/+102
* bpo-46129: Rewrite asyncio.locks tests with IsolatedAsyncioTestCase (GH-30198)Andrew Svetlov2021-12-192-261/+212
* bpo-42413: Replace `concurrent.futures.TimeoutError` and `asyncio.TimeoutErro...Kumar Aditya2021-12-192-5/+2
* bpo-46125: Refactor tests to test traversable API directly. Includes changes ...Jason R. Coombs2021-12-1910-213/+152
* bpo-37578: glob.glob -- added include_hidden parameter (GH-30153)andrei kulakov2021-12-182-21/+53
* bpo-46099: Fix pthread_getcpuclockid test on Solaris (GH-30140)Jakub Kulík2021-12-181-5/+6
* bpo-46114: Fix OpenSSL version check for 3.0.1 (GH-30170)Christian Heimes2021-12-171-1/+5
* bpo-46072: Add top level stats struct (GH-30169)Mark Shannon2021-12-172-6/+5
* bpo-45711: Remove type and traceback from exc_info (GH-30122)Irit Katriel2021-12-173-85/+80
* bpo-46111: Fix unittest tests in optimized mode (GH-30163)Serhiy Storchaka2021-12-173-3/+6
* Fix a typo in the message from make_ssl_certs. (GH-30152)Yilei "Dolee" Yang2021-12-171-1/+1
* bpo-44893: Implement EntryPoint as simple class with attributes. (GH-30150)Jason R. Coombs2021-12-1610-108/+266
* bpo-46105: Honor spec when generating requirement specs with urls and extras....Jason R. Coombs2021-12-162-2/+13
* bpo-22047: [argparse] deprecate nested argument groups and mutually exclusive...Irit Katriel2021-12-162-2/+30
* bpo-45755: [typing] Reveal class attributes of generic in generic aliases in ...Ken Jin2021-12-162-0/+14
* Remove spaces in empty lines (GH-30121)AN Long2021-12-153-5/+5
* bpo-44525: Specialize for calls to type and other builtin classes with 1 argu...Mark Shannon2021-12-151-0/+2
* bpo-46039: Split yield from in two (GH-30035)Mark Shannon2021-12-152-3/+4
* bpo-26952: [argparse] clearer error when formatting an empty mutually… (GH-...Irit Katriel2021-12-152-0/+10
* bpo-44525: Split calls into PRECALL and CALL (GH-30011)Mark Shannon2021-12-144-40/+46
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-1414-34/+1675
* bpo-46063: Add 'delay=True' to file handler initialization. (GH-30103)Vinay Sajip2021-12-141-1/+2
* bpo-46063: Improve algorithm for computing which rolled-over log file… (GH-...Vinay Sajip2021-12-142-5/+66
* bpo-16594: Add allow_reuse_port on socketserver (GH-30072)AN Long2021-12-131-0/+8
* bpo-27718: Fix help for the signal module (GH-30063)Serhiy Storchaka2021-12-132-3/+19
* bpo-46054: Correct non-utf8 character tests in test_exceptions (GH-30074)Pablo Galindo Salgado2021-12-121-2/+2
* Re-add `reuse_address` parameter to `create_server` (GH-29733)Jim Crist-Harif2021-12-121-0/+6
* bpo-45874: Handle empty query string correctly in urllib.parse.parse_qsl (#29...Christian Sattler2021-12-122-3/+4
* bpo-46054: Fix parsing error when parsing non-utf8 characters in source files...Pablo Galindo Salgado2021-12-121-0/+12
* bpo-46042: Improve SyntaxError locations in the symbol table (GH-30059)Pablo Galindo Salgado2021-12-111-3/+4
* bpo-44674: Use unhashability as a proxy for mutability for default dataclass ...Eric V. Smith2021-12-112-2/+30
* bpo-46049: Fixes ._pth support on non-Windows (GH-30051)Steve Dower2021-12-111-22/+34