summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
...
* [3.12] GH-104947: Make pathlib.PureWindowsPath comparisons consistent across ...Miss Islington (bot)2023-05-261-0/+1
* [3.12] gh-104972: Ensure that line attributes in tokens in the tokenize modul...Miss Islington (bot)2023-05-261-2/+13
* [3.12] Remove raw asserts in test_typing.py (GH-104951) (#104978)Miss Islington (bot)2023-05-261-22/+30
* [3.12] gh-104955: Fix __release_buffer__ signature (GH-104956) (#104973)Miss Islington (bot)2023-05-261-0/+5
* [3.12] gh-104935: typing: Fix interactions between `@runtime_checkable` and `...Miss Islington (bot)2023-05-251-0/+42
* [3.12] Fix test_importlib.test_side_effect_import() (GH-104840) (#104842)Miss Islington (bot)2023-05-251-1/+2
* [3.12] gh-104879: Fix TypeAliasType.__module__ in exec() (GH-104881) (#104890)Miss Islington (bot)2023-05-242-0/+43
* [3.12] Improve test coverage for is_typeddict (GH-104884) (#104889)Miss Islington (bot)2023-05-241-3/+22
* [3.12] gh-104866: Tokenize should emit NEWLINE after exiting block with comme...Miss Islington (bot)2023-05-241-0/+17
* [3.12] gh-104825: Remove implicit newline in the line attribute in tokens emi...Pablo Galindo Salgado2023-05-242-6/+6
* [3.12] gh-104797: Allow Protocols to inherit from collections.abc.Buffer (GH-...Miss Islington (bot)2023-05-241-0/+16
* [3.12] gh-104271: Fix auto() fallback in case of mixed type Enum (GH-104279)Itamar Ostricher2023-05-231-1/+4
* gh-104741: Add line number attribute to indentation error exception (#104743)Marta Gómez Macías2023-05-222-2/+11
* gh-102856: Allow comments inside multi-line f-string expresions (#104006)Cristián Maureira-Fredes2023-05-221-3/+38
* gh-94473: Flatten arguments in tkinter.Canvas.coords() (GH-98479)Serhiy Storchaka2023-05-221-0/+6
* gh-104686: Fix tracing for decorated classes (#104708)Jelle Zijlstra2023-05-211-0/+46
* gh-104683: `clinic.py`: Improve coverage for the `parse_converter` method (#1...Alex Waygood2023-05-211-0/+39
* gh-98836: Extend PyUnicode_FromFormat() (GH-98838)Serhiy Storchaka2023-05-211-58/+159
* GH-101291: Add low level, unstable API for pylong (GH-101685)Mark Shannon2023-05-211-0/+39
* gh-86275: improve Hypothesis configuration for CI and local runs (#104468)Zac Hatfield-Dodds2023-05-211-0/+31
* gh-103295: expose API for writing perf map files (#103546)gsallam2023-05-211-0/+19
* gh-104469: Convert _testcapi/exceptions to use AC (gh-104502)Dong-hee Na2023-05-212-2/+2
* gh-74690: Make a typing test more resilient (#104691)Alex Waygood2023-05-211-4/+3
* gh-102856: Python tokenizer implementation for PEP 701 (#104323)Marta Gómez Macías2023-05-212-50/+137
* gh-61460: Stronger HMAC in multiprocessing (#20380)Christian Heimes2023-05-201-10/+47
* gh-103606: raise RuntimeError if config file is invalid or empty (#104701)Prince Roshan2023-05-201-2/+2
* gh-56276: Add tests to test_compare (#3199)Cheryl Sabella2023-05-201-17/+409
* gh-104658: Fix location of unclosed quote error for multiline f-strings (#104...Pablo Galindo Salgado2023-05-201-1/+15
* gh-103987: fix several crashes in mmap module (#103990)Prince Roshan2023-05-201-1/+86
* gh-94906: Support multiple steps in math.nextafter (#103881)Matthias Görgens2023-05-192-3/+58
* gh-104472: Skip `test_subprocess.ProcessTestCase.test_empty_env` if ASAN is e...chgnrdv2023-05-191-0/+3
* gh-92248: Deprecate `type`, `choices`, `metavar` parameters of `argparse.Bool...Nikita Sobolev2023-05-191-0/+43
* gh-104600: Make type.__type_params__ writable (#104634)Jelle Zijlstra2023-05-193-2/+42
* gh-104602: Add additional test for listcomp with lambda (#104639)Jelle Zijlstra2023-05-191-0/+10
* gh-104640: Disallow walrus in comprehension within type scopes (#104641)Jelle Zijlstra2023-05-191-0/+3
* gh-96522: Fix deadlock in pty.spawn (#96639)Youfu Zhang2023-05-191-8/+10
* GH-102818: Do not call `PyTraceBack_Here` in sys.settrace trampoline. (GH-10...Mark Shannon2023-05-191-0/+56
* gh-104619: never leak comprehension locals to outer locals() (#104637)Carl Meyer2023-05-191-0/+13
* gh-104602: ensure all cellvars are known up front (#104603)Carl Meyer2023-05-191-0/+26
* gh-104600: Make function.__type_params__ writable (#104601)Jelle Zijlstra2023-05-183-3/+20
* gh-74690: Don't set special protocol attributes on non-protocol subclasses of...Alex Waygood2023-05-181-0/+15
* gh-104629: Don't skip test_clinic if _testclinic is missing (#104630)Erlend E. Aasland2023-05-181-2/+5
* gh-104549: Set __module__ on TypeAliasType (#104550)Jelle Zijlstra2023-05-182-1/+24
* gh-104615: don't make unsafe swaps in apply_static_swaps (#104620)Carl Meyer2023-05-184-5/+43
* GH-104484: Add case_sensitive argument to `pathlib.PurePath.match()` (GH-104565)thirumurugan2023-05-181-1/+6
* GH-96803: Document and test new unstable internal frame API functions (GH-104...Mark Shannon2023-05-181-0/+24
* gh-104374: Remove access to class scopes for inlined comprehensions (#104528)Jelle Zijlstra2023-05-181-2/+107
* gh-103606: Improve error message from logging.config.FileConfig (GH-103628)Prince Roshan2023-05-181-0/+36
* gh-104555: Runtime-checkable protocols: Don't let previous calls to `isinstan...Alex Waygood2023-05-171-0/+76
* typing: Add more tests for TypeVar (#104571)Jelle Zijlstra2023-05-172-7/+49