summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-121025: Improve partialmethod.__repr__ (GH-121033) (#121037)Miss Islington (bot)2024-06-263-10/+16
* [3.13] gh-114053: Fix another edge case involving `get_type_hints`, PEP 695 a...Miss Islington (bot)2024-06-253-11/+128
* [3.13] gh-120108: Fix deepcopying of AST trees with .parent attributes (GH-12...Jelle Zijlstra2024-06-251-10/+76
* [3.13] gh-113993: Allow interned strings to be mortal, and fix related issues...Petr Viktorin2024-06-244-67/+106
* [3.13] gh-119521: Rename IncompleteInputError to _IncompleteInputError and re...Miss Islington (bot)2024-06-244-4/+3
* [3.13] gh-120373: Mark test_audit.test_http as requiring the network resource...Miss Islington (bot)2024-06-241-0/+1
* [3.13] gh-119614: Fix truncation of strings with embedded null characters in ...Miss Islington (bot)2024-06-242-0/+33
* [3.13] gh-120683: Fix an error in logging.LogRecord timestamp (GH-120709) (GH...Miss Islington (bot)2024-06-242-3/+11
* [3.13] gh-119824: Revert the `where` solution and use meta commands (#120919)Tian Gao2024-06-232-80/+65
* [3.13] gh-120910: Fix issue resolving relative paths outside site-packages. (...Miss Islington (bot)2024-06-233-1/+36
* [3.13] gh-101830: Fix Tcl_Obj to string conversion (GH-120884) (GH-120905)Miss Islington (bot)2024-06-231-1/+51
* [3.13] gh-120873: Add tests for new widget options in Tk 8.7 (GH-120877) (GH-...Miss Islington (bot)2024-06-223-36/+104
* [3.13] gh-120873: Add test for "state" option in ttk.Scale (GH-120874) (GH-12...Miss Islington (bot)2024-06-221-12/+10
* [3.13] gh-104855: Update Tkinter tests for Tcl/Tk 8.7 and 9.0 (GH-120824) (GH...Miss Islington (bot)2024-06-226-137/+250
* [3.13] gh-120384: Fix array-out-of-bounds crash in `list_ass_subscript` (GH-1...Miss Islington (bot)2024-06-212-0/+22
* [3.13] GH-119462: Enforce invariants of type versioning. Backport of GH-12073...Mark Shannon2024-06-201-6/+23
* [3.13] gh-119698: fix `symtable.Class.get_methods` and document its behaviour...Jelle Zijlstra2024-06-202-2/+152
* [3.13] gh-120732: Fix `name` passing to `Mock`, when using kwargs to `create_...Miss Islington (bot)2024-06-192-7/+11
* [3.13] gh-120635: Avoid leaking processes in test_pyrepl (GH-120676) (#120741)Miss Islington (bot)2024-06-191-1/+1
* [3.13] gh-120722: Set position on RETURN_VALUE in lambda (GH-120724) (#120738)Miss Islington (bot)2024-06-191-1/+28
* [3.13] gh-119506: fix `_io.TextIOWrapper.write()` write during flush (GH-1195...Miss Islington (bot)2024-06-191-0/+22
* [3.13] gh-120449: fix ``test_pyclbr`` introspection for mangled names (GH-120...Miss Islington (bot)2024-06-192-17/+75
* [3.13] gh-120381: Fix inspect.ismethoddescriptor() (GH-120684)Miss Islington (bot)2024-06-192-7/+125
* [3.13] gh-120633: Move scrollbar and remove tear-off menus in turtledemo (GH-...Miss Islington (bot)2024-06-191-4/+4
* [3.13] gh-120367: fix bug where compiler detects redundant jump after pseudo ...Miss Islington (bot)2024-06-181-1/+26
* [3.13] gh-117953: Skip `test_interpreters` properly without GIL (gh-120707)Miss Islington (bot)2024-06-181-3/+6
* [3.13] gh-118789: Add `PyUnstable_Object_ClearWeakRefsNoCallbacks` (GH-118807...Miss Islington (bot)2024-06-181-0/+28
* [3.13] gh-120659: Skip `test_freethreading` with GIL (GH-120660) (#120694)Miss Islington (bot)2024-06-181-0/+4
* [3.13] gh-119897: Add test for lambda generator invocation (GH-120658) (#120673)Miss Islington (bot)2024-06-181-1/+5
* [3.13] gh-120590: Fix test_pydoc in the refleak hunting mode (GH-120615) (GH-...Miss Islington (bot)2024-06-181-8/+32
* [3.13] gh-120524: Avoid a Race On _PyRuntime.types.managed_static.types[i].in...Miss Islington (bot)2024-06-171-1/+0
* [3.13] gh-117657: Fix `__slots__` thread safety in free-threaded build (GH-1...Miss Islington (bot)2024-06-172-1/+44
* [3.13] gh-115649: Copy the filename into main interpreter before intern in im...Miss Islington (bot)2024-06-171-0/+2
* [3.13] gh-120367: fix removal of redundant NOPs and jumps after reordering ho...Miss Islington (bot)2024-06-171-0/+27
* [3.13] gh-119933: Improve ``SyntaxError`` message for invalid type parameters...Jelle Zijlstra2024-06-173-17/+130
* [3.13] gh-120567: Clarify weekday return in calendar.monthrange docstring (GH...Miss Islington (bot)2024-06-161-2/+2
* [3.13] gh-119824: Print stack entry when user input is needed (GH-119882) (#1...Tian Gao2024-06-162-19/+81
* [3.13] gh-120579: Guard `_testcapi` import in `test_free_threading` (GH-12058...Miss Islington (bot)2024-06-161-1/+6
* [3.13] gh-112346: Always set OS byte to 255, simpler gzip.compress function. ...Miss Islington (bot)2024-06-152-31/+19
* [3.13] gh-120541: Improve the "less" prompt in pydoc (GH-120543) (GH-120562)Miss Islington (bot)2024-06-152-14/+57
* [3.13] Add some more edge-case tests for `inspect.get_annotations` with `eval...Miss Islington (bot)2024-06-152-11/+36
* [3.13] gh-120544: Add `else: fail()` to tests where exception is expected (GH...Miss Islington (bot)2024-06-152-0/+12
* [3.13] gh-120495: Fix incorrect exception handling in Tab Nanny (GH-120498) (...Miss Islington (bot)2024-06-152-5/+5
* [3.13] gh-119819: Conditional skip of logging tests that require multiprocess...Miss Islington (bot)2024-06-151-3/+2
* [3.13] gh-120524: Temporarily Skip test_create_many_threaded In test_interpre...Eric Snow2024-06-141-0/+1
* [3.13] gh-120161: Fix a Crash in the _datetime Module (gh-120518)Miss Islington (bot)2024-06-141-1/+43
* [3.13] gh-120361: Add `nonmember` test with enum flags inside to `test_enum` ...Miss Islington (bot)2024-06-141-0/+21
* [3.13] gh-114053: Fix bad interaction of PEP 695, PEP 563 and `inspect.get_an...Miss Islington (bot)2024-06-133-1/+182
* [3.13] gh-117398: Add datetime C-API type check test for subinterpreters (gh-...Miss Islington (bot)2024-06-132-1/+42
* [3.13] Fix typos in documentation (GH-120338) (#120438)Xie Yanbo2024-06-133-5/+5