summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-46129: Rewrite asyncio.locks tests with IsolatedAsyncioTestCase (GH-30198)Andrew Svetlov2021-12-191-260/+212
* bpo-46125: Refactor tests to test traversable API directly. Includes changes ...Jason R. Coombs2021-12-196-189/+129
* bpo-37578: glob.glob -- added include_hidden parameter (GH-30153)andrei kulakov2021-12-181-0/+18
* 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-171-3/+3
* bpo-45711: Remove type and traceback from exc_info (GH-30122)Irit Katriel2021-12-172-83/+77
* 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-165-42/+90
* 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-2/+12
* bpo-45755: [typing] Reveal class attributes of generic in generic aliases in ...Ken Jin2021-12-161-0/+11
* Remove spaces in empty lines (GH-30121)AN Long2021-12-152-2/+2
* bpo-26952: [argparse] clearer error when formatting an empty mutually… (GH-...Irit Katriel2021-12-151-0/+7
* bpo-44525: Split calls into PRECALL and CALL (GH-30011)Mark Shannon2021-12-142-29/+29
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-1411-31/+1651
* 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-141-2/+50
* bpo-27718: Fix help for the signal module (GH-30063)Serhiy Storchaka2021-12-131-0/+9
* bpo-46054: Correct non-utf8 character tests in test_exceptions (GH-30074)Pablo Galindo Salgado2021-12-121-2/+2
* bpo-45874: Handle empty query string correctly in urllib.parse.parse_qsl (#29...Christian Sattler2021-12-121-1/+1
* 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-111-0/+26
* bpo-46049: Fixes ._pth support on non-Windows (GH-30051)Steve Dower2021-12-111-22/+34
* bpo-46048: Fix parsing of single character lines in getpath readlines() (GH-3...Steve Dower2021-12-111-0/+20
* bpo-37971: fix the position of decorator application (GH-30027)Carl Friedrich Bolz-Tereick2021-12-102-3/+48
* bpo-42918: Improve build-in function compile() in mode 'single' (GH-29934)Weipeng Hong2021-12-101-0/+2
* bpo-46014: Add ability to use typing.Union with singledispatch (GH-30017)Yurii Karabas2021-12-101-0/+30
* bpo-27062: add `__all__` to inspect module (GH-30003)Kumar Aditya2021-12-101-0/+3
* bpo-45582: Fix test_embed failure during a PGO build on Windows (GH-30014)neonene2021-12-101-3/+8
* Move error test to the function that needs it. Improve error message. (GH-30...Raymond Hettinger2021-12-101-4/+0
* bpo-43931: Export Python version as API data (GH-25577)Gabriele N. Tornetta2021-12-102-0/+4
* bpo-46025: Fix a crash in the atexit module for auto-unregistering functions ...Pablo Galindo Salgado2021-12-091-0/+15
* bpo-25066: Added repr for multiprocessing.Event (GH-29749)Kumar Aditya2021-12-091-1/+14
* bpo-46015: Fixes calculation of sys.path in a venv on Windows (GH-29992)Steve Dower2021-12-082-0/+3
* bpo-45359: Support TopologicalSorter type subscript (GH-28714)Jacob Hayes2021-12-081-0/+2
* bpo-45813: Drop redundant assertion from frame.clear() (GH-29990)Andrew Svetlov2021-12-081-2/+11
* bpo-46009: Do not exhaust generator when send() method raises (GH-29986)Mark Shannon2021-12-081-0/+8
* bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...Mark Shannon2021-12-072-3/+2
* bpo-46004: Fix error location for loops with invalid targets (GH-29959)Pablo Galindo Salgado2021-12-071-0/+1
* Revert "bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)" (GH-2...Victor Stinner2021-12-0714-1719/+2197
* bpo-45890: Add tests for tracing try-except-finally blocks (GH-29746)Irit Katriel2021-12-072-2/+51
* bpo-45582: Ensure PYTHONHOME still overrides detected build prefixes (GH-29948)Steve Dower2021-12-071-0/+30
* bpo-23819: asyncio: Replace AssertionError with TypeError where it makes sens...Kumar Aditya2021-12-062-6/+6
* bpo-45582: Fix getpath_isxfile() and test_embed on Windows (GH-29930)neonene2021-12-061-2/+10
* bpo-45963: Make space for the InterpreterFrame of a generator in that generat...Mark Shannon2021-12-061-1/+1
* bpo-45664: Fix resolve_bases() and new_class() for GenericAlias instance as a...Serhiy Storchaka2021-12-051-0/+16
* bpo-45663: Fix is_dataclass() for dataclasses which are subclasses of types.G...Serhiy Storchaka2021-12-051-0/+12
* bpo-45662: Fix the repr of InitVar with a type alias to the built-in class (G...Serhiy Storchaka2021-12-051-0/+4