summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Python 3.12.0b2v3.12.0b2Thomas Wouters2023-06-061-107/+674
* [3.12] GH-105162: Account for `INSTRUMENTED_RESUME` in gen.close/throw. (GH-1...Miss Islington (bot)2023-06-061-0/+35
* [3.12] gh-104411: Update test_getint for Tcl 9.0 (GH-104412) (#105356)Miss Islington (bot)2023-06-061-1/+4
* [3.12] gh-102304: doc: Add links to Stable ABI and Limited C API (#105345) (#...Victor Stinner2023-06-061-2/+1
* [3.12] gh-105259: Ensure we don't show newline characters for trailing NEWLIN...Miss Islington (bot)2023-06-061-1/+1
* [3.12] gh-105324: Fix tokenize module main function for stdin (GH-105325) (#1...Miss Islington (bot)2023-06-051-2/+1
* [3.12] gh-89412: Add missing attributes (added in 3.10) to traceback module d...Miss Islington (bot)2023-06-051-2/+2
* [3.12] gh-105286: Improve `typing.py` docstrings (#105287) (#105319)Alex Waygood2023-06-051-220/+253
* [3.12] gh-105280: Ensure `isinstance([], collections.abc.Mapping)` always eva...Miss Islington (bot)2023-06-052-8/+34
* [3.12] gh-105237: Allow calling `issubclass(X, typing.Protocol)` again (GH-10...Miss Islington (bot)2023-06-052-0/+63
* [3.12] gh-105164: Detect annotations inside match blocks (GH-105177) (#105313)Miss Islington (bot)2023-06-051-0/+111
* [3.12] gh-98963: Restore the ability to have a dict-less property. (GH-105262...Miss Islington (bot)2023-06-051-5/+56
* [3.12] gh-104690 Disallow thread creation and fork at interpreter finalizatio...Miss Islington (bot)2023-06-043-28/+51
* [3.12] gh-105080: Fixed inconsistent signature on derived classes (GH-105217)...Miss Islington (bot)2023-06-022-11/+30
* [3.12] gh-105194: Fix format specifier escaped characters in f-strings (GH-10...Miss Islington (bot)2023-06-021-0/+10
* [3.12] gh-104799: Default missing lists in AST to the empty list (GH-104834) ...Miss Islington (bot)2023-06-021-0/+2
* [3.12] gh-104614: Make Sure ob_type is Always Set Correctly by PyType_Ready()...Miss Islington (bot)2023-06-011-1/+37
* [3.12] gh-105020: Share tp_bases and tp_mro Between Interpreters For All Stat...Miss Islington (bot)2023-06-011-0/+33
* [3.12] gh-102251: Explicitly free state for test modules with state in test_i...Miss Islington (bot)2023-05-311-4/+10
* [3.12] gh-102304: Fix 2 New Stable ABI Functions (gh-104762) (gh-105123)Eric Snow2023-05-311-0/+2
* [3.12] GH-105113: Improve performance of `pathlib.PurePath.match()` (GH-105114)Barney Gale2023-05-311-14/+72
* [3.12] gh-105144: Runtime-checkable protocols: move all 'sanity checks' to `_...Miss Islington (bot)2023-05-312-37/+106
* [3.12] gh-105096: Reformat wave documentation (#105136) (#105138)Victor Stinner2023-05-311-2/+3
* [3.12] gh-105069: Add a readline-like callable to the tokenizer to consume in...Miss Islington (bot)2023-05-313-71/+108
* [3.12] gh-105042: Disable unmatched parens syntax error in python tokenize (G...Miss Islington (bot)2023-05-313-1/+15
* [3.12] gh-105035: fix super() calls on unusual types (e.g. meta-types) (GH-10...Miss Islington (bot)2023-05-301-0/+12
* gh-88745: Add _winapi.CopyFile2 and update shutil.copy2 to use it (GH-105055)Miss Islington (bot)2023-05-301-0/+25
* [3.12] gh-105071: add PyUnstable_Exc_PrepReraiseStar to expose except* implem...Irit Katriel2023-05-301-0/+93
* [3.12] gh-104799: Move location of type_params AST fields (GH-104828) (#104974)Miss Islington (bot)2023-05-301-53/+77
* [3.12] gh-105077: Fix test_tkinter refleak checking (GH-105078) (GH-105079)Miss Islington (bot)2023-05-301-5/+10
* [3.12] GH-89455: Add missing attributes (added in 3.11) to traceback module d...Miss Islington (bot)2023-05-291-0/+2
* gh-104803: Implement ntpath.isdevdrive for checking whether a path is on a Wi...Miss Islington (bot)2023-05-292-0/+36
* [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