summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-43406: Fix possible race condition where ``PyErr_CheckSignals`` tries to ...Antoine Pitrou2021-03-051-0/+50
* bpo-42129: Add support for resources in namespaces (GH-24670)Jason R. Coombs2021-03-0413-102/+304
* bpo-42128: Add __match_args__ to structseq-based classes (GH-24732)Pablo Galindo2021-03-041-0/+12
* bpo-40701: tempfile mixes str and bytes in an inconsistent manner (GH-20442)Eric L2021-03-031-0/+57
* bpo-43162: [Enum] update docs, renable doc tests (GH-24487)Ethan Furman2021-03-031-3/+3
* bpo-43295: Fix error handling of datetime.strptime format string '%z' (GH-24627)Noor Michael2021-03-031-0/+1
* bpo-42782: Fail fast for permission errors in shutil.move() (GH-24001)Winson Luk2021-03-021-0/+37
* bpo-37146: Deactivate opcode cache only when using huntrleaks in the test sui...Pablo Galindo2021-02-281-0/+1
* bpo-41972: Use the two-way algorithm for string searching (GH-22904)Dennis Sweeney2021-02-281-0/+39
* bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher2021-02-265-0/+2900
* bpo-38302: __pow__/__rpow__ now called when __ipow__ returns NotImplemented (...Alex2021-02-261-0/+42
* bpo-43144: Mark unicodedata's test_normalization as requiring network (GH-24650)Ammar Askar2021-02-261-0/+1
* bpo-43316: gzip: Fix sys.exit() usage. (GH-24652)Inada Naoki2021-02-261-1/+1
* bpo-43316: gzip: CLI uses non-zero return code on error. (GH-24647)Ruben Vorderman2021-02-251-4/+4
* bpo-42151: don't set specified_attributes=1 in pure Python ElementTree (GH-22...Felix C. Stegerman2021-02-241-0/+19
* bpo-43146: fix None-handling in single-arg traceback.print_exception(None) (G...Irit Katriel2021-02-231-0/+5
* bpo-43146: fix regression in traceback.print_exception(None) (GH-24463)Irit Katriel2021-02-231-0/+18
* bpo-36346: Emit DeprecationWarning for PyArg_Parse() with 'u' or 'Z'. (GH-20927)Inada Naoki2021-02-222-26/+63
* bpo-43260: io: Prevent large data remains in textio buffer. (GH-24592)Inada Naoki2021-02-211-0/+27
* Fix failed merge of bpo-43288. (GH-24614)Neil Schemenauer2021-02-211-2/+3
* bpo-43288: Fix bug in test_importlib test. (GH-24612)Neil Schemenauer2021-02-211-0/+4
* bpo-42990: Functions inherit current builtins (GH-24564)Victor Stinner2021-02-201-0/+27
* bpo-42990: Add __builtins__ attribute to functions (GH-24559)Victor Stinner2021-02-182-3/+9
* bpo-43231: Correctly calculate the curses color pair limit when checking for ...Pablo Galindo2021-02-151-1/+1
* bpo-43231: Fix test.test_curses.TestCurses.test_init_pair when running under ...Pablo Galindo2021-02-151-0/+7
* bpo-42967: only use '&' as a query string separator (#24297)Adam Goldschmidt2021-02-142-27/+70
* bpo-43172: readline now passes its tests when built against libedit (GH-24499)Gregory P. Smith2021-02-121-2/+19
* bpo-42217: compiler: merge same co_code and co_linetable objects (GH-23056)Inada Naoki2021-02-101-0/+11
* bpo-43163: Handle unclosed parentheses in codeop (GH-24483)Pablo Galindo2021-02-091-0/+4
* bpo-43162: [Enum] deprecate enum member.member access (GH-24486)Ethan Furman2021-02-091-0/+23
* bpo-40692: Run more test_concurrent_futures tests (GH-20239)Asheesh Laroia2021-02-082-5/+25
* bpo-43149: Improve error message for exception group without parentheses (GH-...Pablo Galindo2021-02-071-0/+33
* bpo-43102: Set namedtuple __new__'s internal builtins to a dict. (GH-24439)Raymond Hettinger2021-02-041-0/+5
* bpo-43121: Fix incorrect SyntaxError message for missing comma (GH-24436)Pablo Galindo2021-02-031-2/+18
* bpo-41149: Fix a bug in threading that causes fals-y threads callables to fai...BarneyStratford2021-02-021-0/+20
* bpo-42997: Improve error message for missing : before suites (GH-24292)Pablo Galindo2021-02-021-3/+104
* Only eliminate jumps to successor block if jump is unconditional. (GH-24417)Mark Shannon2021-02-021-0/+16
* bpo-41748: Handles unquoted attributes with commas (#24072)Karl Dubost2021-02-011-36/+56
* bpo-38307: Add end_lineno attribute to pyclbr Objects (GH-24348)Aviral Srivastava2021-02-011-11/+11
* bpo-42504: Ensure that get_config_var('MACOSX_DEPLOYMENT_TARGET') is a string...Ronald Oussoren2021-02-011-1/+1
* bpo-43017: Improve error message for unparenthesised tuples in comprehensions...Pablo Galindo2021-01-312-1/+17
* bpo-42986: Fix parser crash when reporting syntax errors in f-string with new...Pablo Galindo2021-01-311-0/+3
* bpo-43016: Fix test_curses on platform without cursesw (GH-24405)Serhiy Storchaka2021-01-311-5/+23
* bpo-43016: Rewrite tests for curses (GH-24312)Serhiy Storchaka2021-01-311-215/+787
* bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_Co...Mark Shannon2021-01-291-1/+1
* bpo-42979: Enhance abstract.c assertions checking slot result (GH-24352)Victor Stinner2021-01-271-32/+65
* bpo-38250: [Enum] only include .rst test if file available (GH-24342)Ethan Furman2021-01-261-4/+6
* bpo-38250: [Enum] single-bit flags are canonical (GH-24215)Ethan Furman2021-01-252-72/+252
* bpo-42955: Rename module_names to sys.stdlib_module_names (GH-24332)Victor Stinner2021-01-253-4/+4
* bpo-42383: pdb: do not fail to restart the target if the current directory ch...Andrey Bienkowski2021-01-251-0/+23