summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* gh-118335: Make REGEN_JIT_COMMAND empty if tier2 interpreter enabled (#118493)Guido van Rossum2024-05-011-0/+3
* gh-117607: Speedup os.path.relpath() (GH-117608)Nice Zombies2024-05-011-0/+1
* gh-110850: Add PyTime_TimeRaw() function (#118394)Victor Stinner2024-05-011-0/+7
* gh-116622: Android sysconfig updates (#118352)Malcolm Smith2024-05-011-0/+2
* gh-99730: urllib.request: Keep HEAD method on redirect (GH-99731)Harmen Stoppels2024-05-011-0/+1
* gh-117958: Expose JIT code via method in UOpExecutor (#117959)Anthony Shaw2024-05-011-0/+2
* gh-99180: Remove traceback anchors in return and assign statements that cover...Pablo Galindo Salgado2024-05-011-0/+2
* gh-116767: fix crash on 'async with' with many context managers (GH-118348)Irit Katriel2024-05-011-0/+1
* GH-117881: fix athrow().throw()/asend().throw() concurrent access (GH-117882)Thomas Grainger2024-05-011-0/+1
* gh-116622: Add Android testbed (GH-117878)Malcolm Smith2024-05-011-0/+1
* gh-118335: Configure Tier 2 interpreter at build time (#118339)Guido van Rossum2024-05-011-0/+4
* gh-118124: Use static_assert() in Py_BUILD_ASSERT() on C11 (#118398)Victor Stinner2024-04-301-0/+3
* gh-118218: Reuse return tuple in itertools.pairwise (GH-118219)Shantanu2024-04-301-0/+1
* gh-118406: Add signature for sqlite3.Connection objects (#118428)Erlend E. Aasland2024-04-301-0/+1
* gh-118272: Clear generator frame's locals when the generator is closed (#118277)Irit Katriel2024-04-301-0/+2
* gh-117618: Make package.module searchable for breakpoints and clean up docs (...Tian Gao2024-04-301-0/+1
* gh-118402: Fix inspect.signature() for functools.cmp_to_key() result (GH-118427)Serhiy Storchaka2024-04-301-0/+2
* gh-116622: Redirect stdout and stderr to system log when embedded in an Andro...Malcolm Smith2024-04-301-0/+1
* gh-118404: Fix inspect.signature() for non-comparable callables (GH-118405)Serhiy Storchaka2024-04-301-0/+1
* GH-118306: Update JIT to use LLVM 18 (GH-118307)Savannah Ostrowski2024-04-291-0/+1
* gh-118347: Fix Windows installer not updating launcher (GH-118386)Steve Dower2024-04-291-0/+1
* gh-118285: Fix signatures of operator.{attrgetter,itemgetter,methodcaller} in...Serhiy Storchaka2024-04-291-0/+4
* gh-107674: Lazy load line number to improve performance of tracing (GH-118127)Tian Gao2024-04-291-0/+1
* gh-115119: Detect _decimal dependencies using pkg-config (#115406)Erlend E. Aasland2024-04-291-0/+2
* gh-118293: Suppress mouse cursor feedback when launching Windows processes wi...Henrik Tunedal2024-04-281-0/+2
* gh-101100: Fix Sphinx warnings in `whatsnew/3.9.rst` (#118364)Hugo van Kemenade2024-04-285-10/+10
* gh-109118: Make comprehensions work within annotation scopes, but without inl...Jelle Zijlstra2024-04-281-0/+3
* Correct spelling error in recent NEWS entry (#118308)Xie Yanbo2024-04-271-1/+1
* bpo-32839: Add the after_info() method for Tkinter widgets (GH-5664)Cheryl Sabella2024-04-261-0/+1
* gh-117385: Remove unhooked events on sys.settrace (GH-117386)Tian Gao2024-04-261-0/+1
* gh-117928: Bump the minimum Sphinx version to 6.2.1 (#117853)Kirill Podoprigora2024-04-261-0/+1
* gh-117566: fix IPv6Address.is_loopback for IPv4-mapped loopbacks (GH-117567)Faidon Liambotis2024-04-251-0/+3
* gh-102511: Speed up os.path.splitroot() with native helpers (GH-118089)Nice Zombies2024-04-251-0/+1
* gh-118221: Always use the default row factory in sqlite3.iterdump() (#118223)Erlend E. Aasland2024-04-251-0/+2
* gh-117786: Fix venv created from Windows Store install by restoring __PYVENV_...Steve Dower2024-04-241-0/+2
* gh-108191: Add support of positional argument in SimpleNamespace constructor ...Serhiy Storchaka2024-04-241-0/+3
* gh-76785: Rename _xxsubinterpreters to _interpreters (gh-117791)Eric Snow2024-04-241-0/+6
* gh-118013: Use weakrefs for the cache key in `inspect._shadowed_dict` (#118202)Alex Waygood2024-04-241-0/+9
* GH-117536: GH-117894: fix athrow().throw(...) unawaited warning (GH-117851)Thomas Grainger2024-04-242-0/+2
* gh-117225: Add color to doctest output (#117583)Hugo van Kemenade2024-04-241-0/+1
* gh-117901: Add option for compiler's codegen to save nested instruction seque...Irit Katriel2024-04-241-0/+1
* gh-116023: Add `show_empty=False` to `ast.dump` (#116037)Nikita Sobolev2024-04-241-0/+3
* gh-118168: Fix Unpack interaction with builtin aliases (#118169)Jelle Zijlstra2024-04-231-0/+4
* gh-118082: Improve `import` without names syntax error message (#118083)Nikita Sobolev2024-04-231-0/+3
* gh-68114: Fix handling for removed PyArg_ParseTuple 'w' formatters (GH-8204)Joe Jevnik2024-04-231-0/+2
* gh-95754: Better error when script shadows a standard library or third party ...Shantanu2024-04-231-0/+4
* gh-116741: Upgrade libexpat to 2.6.2 (#117296)Seth Michael Larson2024-04-232-10/+11
* GH-118074: Executors in the COLD_EXITS array are not GC'able (#118117)Guido van Rossum2024-04-221-0/+2
* gh-109118: Allow lambdas in annotation scopes in classes (#118019)Jelle Zijlstra2024-04-221-0/+2
* bpo-18108: Adding dir_fd and follow_symlinks keyword args to shutil.chown (GH...tahia2024-04-221-0/+1