summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-105017: Include CRLF lines in strings and column numbers (GH-105030...Miss Islington (bot)2023-05-281-8/+36
* [3.12] gh-105013: Fix inspect.getsource with parenthesized multiline lambdas ...Miss Islington (bot)2023-05-283-0/+41
* [3.12] gh-104497: Make tkinter test pass with tk 8.7 (GH-104789) (#105028)Miss Islington (bot)2023-05-271-1/+4
* [3.12] gh-105017: Fix including additional NL token when using CRLF (GH-10502...Miss Islington (bot)2023-05-271-0/+8
* [3.12] gh-104839: Prevent test_venv AddressSanitizer spam (GH-105005) (#105006)Miss Islington (bot)2023-05-271-9/+8
* [3.12] gh-104976: Ensure trailing dedent tokens are emitted as the previous t...Miss Islington (bot)2023-05-262-12/+8
* [3.12] GH-101588: Deprecate pickle/copy/deepcopy support in itertools (GH-104...Miss Islington (bot)2023-05-261-2/+47
* [3.12] GH-103631: Fix `PurePosixPath(PureWindowsPath(...))` separator handlin...Miss Islington (bot)2023-05-262-0/+9
* [3.12] GH-104947: Make pathlib.PureWindowsPath comparisons consistent across ...Miss Islington (bot)2023-05-262-1/+5
* [3.12] gh-104972: Ensure that line attributes in tokens in the tokenize modul...Miss Islington (bot)2023-05-262-4/+15
* [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-104924: Fix `read()able` in `http.client` log messages (gh-104926) ...Miss Islington (bot)2023-05-261-2/+2
* [3.12] gh-104943: Remove mentions of old Python versions (GH-104945) (#104963)Miss Islington (bot)2023-05-261-4/+1
* [3.12] gh-102024: Reduced _idle_semaphore.release calls (GH-102025) (#104959)Miss Islington (bot)2023-05-261-8/+11
* [3.12] gh-104935: typing: Fix interactions between `@runtime_checkable` and `...Miss Islington (bot)2023-05-252-3/+45
* [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: add omitted idlelib text fix (#104880)Terry Jan Reedy2023-05-241-2/+2
* [3.12] gh-104719: IDLE - test existence of all tokenize references. (GH-10476...Miss Islington (bot)2023-05-244-12/+52
* [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-242-1/+17
* [3.12] gh-104271: Fix auto() fallback in case of mixed type Enum (GH-104279)Itamar Ostricher2023-05-232-2/+5
* Python 3.12.0b1v3.12.0b1Thomas Wouters2023-05-221-87/+252
* 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-222-1/+7
* gh-104656: Rename typeparams AST node to type_params (#104657)Jelle Zijlstra2023-05-221-6/+6
* gh-104536: Improve `multiprocessing.process._cleanup` logic (#104537)Luccccifer2023-05-221-1/+1
* gh-102856: Tokenize performance improvement (#104731)Marta Gómez Macías2023-05-221-12/+1
* 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-104719: IDLE - delete useless monkeypatch of tokenize (#104726)Terry Jan Reedy2023-05-211-12/+6
* gh-104719: Restore Tokenize module constants (#104722)Marta Gómez Macías2023-05-211-0/+101
* 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-216-343/+203
* gh-61460: Stronger HMAC in multiprocessing (#20380)Christian Heimes2023-05-202-41/+198
* gh-103606: raise RuntimeError if config file is invalid or empty (#104701)Prince Roshan2023-05-202-4/+4
* 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