summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-46054: Fix parsing error when parsing non-utf8 characters in source files...Miss Islington (bot)2021-12-121-0/+12
* bpo-46042: Improve SyntaxError locations in the symbol table (GH-30059) (GH-3...Miss Islington (bot)2021-12-121-3/+4
* bpo-45822: Minor cleanups to the test_Py_CompileString test (GH-29750) (GH-29...Miss Islington (bot)2021-12-111-8/+8
* bpo-46025: Fix a crash in the atexit module for auto-unregistering functions ...Miss Islington (bot)2021-12-091-0/+15
* [3.10] bpo-46009: Do not exhaust generator when send() method raises (GH-2998...Mark Shannon2021-12-081-0/+8
* [3.10] bpo-46004: Fix error location for loops with invalid targets (GH-29959...Pablo Galindo Salgado2021-12-071-0/+1
* bpo-45664: Fix resolve_bases() and new_class() for GenericAlias instance as a...Miss Islington (bot)2021-12-051-0/+16
* bpo-45663: Fix is_dataclass() for dataclasses which are subclasses of types.G...Miss Islington (bot)2021-12-051-0/+12
* bpo-45662: Fix the repr of InitVar with a type alias to the built-in class (G...Miss Islington (bot)2021-12-051-0/+4
* bpo-27946: Fix possible crash in ElementTree.Element (GH-29915)Miss Islington (bot)2021-12-051-0/+12
* bpo-45614: Fix traceback display for exceptions with invalid module name (GH-...Irit Katriel2021-11-291-0/+11
* bpo-37658: Actually return result in race condition (GH-29202)Miss Islington (bot)2021-11-291-30/+8
* [3.10] bpo-19460: Add test for MIMENonMultipart (GH-29817) (GH-29818)Miss Islington (bot)2021-11-281-0/+14
* [3.10] bpo-45727: Only trigger the 'did you forgot a comma' error suggestion ...Pablo Galindo Salgado2021-11-252-3/+3
* bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH...Miss Islington (bot)2021-11-221-0/+1
* bpo-44649: Fix dataclasses(slots=True) with a field with a default, but init=...Miss Islington (bot)2021-11-221-0/+22
* bpo-45852: Fix the Counter/iter test for statistics.mode() (GH-29667) (GH-29...Miss Islington (bot)2021-11-211-4/+7
* Added kw_only parameter to make_dataclasses. (GH-29679)Miss Islington (bot)2021-11-201-0/+11
* [3.10] bpo-45727: Make the syntax error for missing comma more consistent (GH...Pablo Galindo Salgado2021-11-201-1/+2
* [3.10] bpo-45848: Allow the parser to get error lines from encoded files (GH-...Łukasz Langa2021-11-201-0/+13
* bpo-45835: Fix race condition in test_queue (GH-29601) (GH-29612)Miss Islington (bot)2021-11-181-11/+11
* [3.10] bpo-45826: Fix a crash in suggestions.c by checking for `traceback is ...Łukasz Langa2021-11-181-0/+31
* [3.10] bpo-45822: Respect PEP 263's coding cookies in the parser even if flag...Pablo Galindo Salgado2021-11-171-0/+8
* bpo-42540: reallocation of id_mutex should not force default allocator (GH-29...Miss Islington (bot)2021-11-171-0/+16
* [3.10] bpo-45716: Improve the error message when using True/False/None as key...Pablo Galindo Salgado2021-11-161-2/+8
* bpo-45738: Fix computation of error location for invalid continuation (GH-29550)Miss Islington (bot)2021-11-141-1/+7
* bpo-45235: Revert an argparse bugfix that caused a regression (GH-29525) (GH...Miss Islington (bot)2021-11-121-6/+0
* [3.10] bpo-45773: Stop "optimizing" certain jump patterns (GH-29526)Brandt Bucher2021-11-111-0/+7
* [3.10] bpo-45757: Fix bug where dis produced an incorrect oparg on EXTENDED_A...Irit Katriel2021-11-091-0/+21
* bpo-45644: Make json.tool read infile before writing to outfile (GH-29273) (...Miss Islington (bot)2021-11-061-0/+9
* bpo-45678: Add more ``singledispatchmethod`` tests (GH-29412) (GH-29424)Miss Islington (bot)2021-11-051-0/+99
* bpo-30570: Fix segfault on buildbots caused by stack overflow from recursion ...Miss Islington (bot)2021-11-042-12/+18
* bpo-45678: Add ``functools.singledispatchmethod`` tests (GH-29328) (GH-29390)Miss Islington (bot)2021-11-031-1/+41
* [3.10] bpo-45578: add tests for `dis.distb` (GH-29332) (GH-29385)Łukasz Langa2021-11-031-0/+41
* bpo-45406: make inspect.getmodule() return None when getabsfile() raises File...Miss Islington (bot)2021-11-021-0/+9
* bpo-45679: Fix caching of multi-value typing.Literal (GH-29334)Miss Islington (bot)2021-10-311-0/+4
* [3.10] bpo-45502: Fix test_shelve (GH-29003) (GH-29305)Serhiy Storchaka2021-10-291-72/+54
* bpo-45577: test all pickle protocols in `test_zoneinfo` (GH-29167) (GH-29296)Miss Islington (bot)2021-10-281-44/+53
* bpo-45624: make test_graphlib not depend on the iteration order of sets (GH-2...Miss Islington (bot)2021-10-281-4/+13
* bpo-44904: Fix classmethod property bug in doctest module (GH-28838)Miss Islington (bot)2021-10-281-0/+15
* bpo-45438: format of inspect.Signature with generic builtins (GH-29212)Miss Islington (bot)2021-10-271-0/+11
* bpo-45566: `test_frozen_pickle` checks all `pickle` protocols (GH-29150)Miss Islington (bot)2021-10-241-4/+17
* bpo-30570: Use Py_EnterRecursiveCall() in issubclass() (GH-29048)Miss Islington (bot)2021-10-221-0/+30
* bpo-43592: Raise RLIMIT_NOFILE in test.libregrtest (GH-29127)Miss Islington (bot)2021-10-221-0/+24
* bpo-44559: [Enum] restore fixes lost in 3.9 reversion (GH-29114)Ethan Furman2021-10-211-17/+145
* bpo-45192: Fix a bug that infers the type of an os.PathLike[bytes] object as ...Miss Islington (bot)2021-10-201-0/+19
* bpo-45229: Make doctest tests discoverable (GH-28986) (GH-29095)Miss Islington (bot)2021-10-202-23/+18
* bpo-39679: Add tests for classmethod/staticmethod singledispatchmethods (GH-2...Miss Islington (bot)2021-10-191-0/+42
* [3.10] bpo-45494: Fix parser crash when reporting errors involving invalid co...Łukasz Langa2021-10-191-0/+4
* [3.10] bpo-45500: Rewrite test_dbm (GH-29002) (GH-29069)Łukasz Langa2021-10-191-64/+50