summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* gh-97591: In `Exception.__setstate__()` acquire strong references before call...Ofey Chan2022-10-021-0/+2
* gh-95588: Drop the safety claim from `ast.literal_eval` docs. (#95919)Gregory P. Smith2022-10-021-0/+6
* GH-97592: Fix crash in C remove_done_callback due to evil code (#97660)Guido van Rossum2022-09-301-0/+1
* GH-96827: Don't touch closed loops from executor threads (#96837)Guido van Rossum2022-09-301-0/+1
* gh-94526: getpath_dirname() no longer encodes the path (#97645)Victor Stinner2022-09-301-0/+4
* gh-90989: Install Windows launcher per-user, and clarify some installer text ...Steve Dower2022-09-301-0/+2
* gh-97649: The Tools directory is no longer installed on Windows (GH-97653)Steve Dower2022-09-301-0/+1
* Use SyntaxError invalid range in tutorial introduction example (GH-93031)Eddie Hebert2022-09-301-0/+1
* gh-96348: Deprecate the 3-arg signature of coroutine.throw and generator.thro...Ofey Chan2022-09-302-0/+3
* gh-91212: Fixed flickering when the tracer is turned off (#95129)Shin-myoung-serp2022-09-291-0/+1
* gh-97612: Fix shell injection in get-remote-certificate.py (#97613)Victor Stinner2022-09-281-0/+3
* gh-97616: list_resize() checks for integer overflow (#97617)Victor Stinner2022-09-281-0/+3
* GH-82448: Add thread timeout for loop.shutdown_default_executor (#97561)Kumar Aditya2022-09-281-0/+3
* bpo-47243: Duplicate entry in 'Objects/unicodetype_db.h' (GH-32376)LiarPrincess2022-09-281-0/+1
* gh-96670: Raise SyntaxError when parsing NULL bytes (#97594)Pablo Galindo Salgado2022-09-271-0/+2
* gh-73588: Fix generation of the default name of tkinter.Checkbutton. (GH-97547)Serhiy Storchaka2022-09-271-0/+4
* gh-97545: Make Semaphore run faster. (#97549)Cyker Way2022-09-261-0/+1
* gh-96848: Fix -X int_max_str_digits option parsing (#96988)Victor Stinner2022-09-261-0/+3
* GH-78724: Initialize struct.Struct in __new__ (GH-94532)Kumar Aditya2022-09-251-0/+1
* gh-96735: Fix undefined behaviour in struct unpacking functions (#96739)Mark Dickinson2022-09-251-0/+1
* gh-90716: Refactor PyLong_FromString to separate concerns (GH-96808)Oscar Benjamin2022-09-251-0/+2
* gh-97519: Synchronize links in other copies of HISTORY OF THE SOFTWARE (GH-97...Serhiy Storchaka2022-09-251-1/+1
* gh-96965: Update Windows release to libffi 3.4.3 (GH-97512)Steve Dower2022-09-231-0/+1
* gh-96761: Fix build process of the clang compiler for _bootstrap_python (gh-9...Dong-hee Na2022-09-231-0/+2
* GH-85760: Fix race in calling process_exited callback too early (#97009)Kumar Aditya2022-09-221-0/+1
* gh-90155: Fix bug in asyncio.Semaphore and strengthen FIFO guarantee (#93222)Cyker Way2022-09-221-0/+1
* GH-96975: Skip incomplete frames in PyEval_GetFrame (GH-97003)Brandt Bucher2022-09-221-0/+2
* gh-97005: Update libexpat from 2.4.7 to 2.4.9 (gh-97006)Dong-hee Na2022-09-221-0/+1
* GH-95921: Fix positions for some chained comparisons (GH-96968)Brandt Bucher2022-09-201-0/+2
* gh-96512: Update int_max_str docs to say 3.11 (#96942)Gregory P. Smith2022-09-191-14/+0
* gh-95865: Further reduce quote_from_bytes memory consumption (#96860)Gregory P. Smith2022-09-191-0/+3
* gh-96387: take_gil() resets drop request before exit (#96869)Victor Stinner2022-09-191-0/+5
* GH-96864: Check for error between line and opcode events (GH-96880)Brandt Bucher2022-09-191-0/+2
* gh-96821: Fix undefined behaviour in `_testcapimodule.c` (GH-96915)Matthias Görgens2022-09-191-0/+1
* Revert "gh-87079: Warn on unintended signal wakeup fd override in `asyncio` (...Guido van Rossum2022-09-171-2/+0
* gh-91210: Improve error message when non-default param follows default (GH-95...Lysandros Nikolaou2022-09-171-0/+1
* gh-87079: Warn on unintended signal wakeup fd override in `asyncio` (#96807)Michel Hidalgo2022-09-171-0/+2
* gh-96883: browser: include concurrent.futures (GH-96886)Christian Heimes2022-09-171-0/+2
* gh-95778: Mention sys.set_int_max_str_digits() in error message (#96874)Victor Stinner2022-09-161-0/+3
* gh-96052: codeop: fix handling compiler warnings in incomplete input (GH-96132)Serhiy Storchaka2022-09-161-0/+4
* gh-89536: Use ThinLTO policy if possible (gh-96766)Dong-hee Na2022-09-161-0/+2
* GH-91049: Introduce set vectorcall field API for PyFunctionObject (GH-92257)adphrost2022-09-151-0/+5
* gh-96751: Remove dead code from `CALL_FUNCTION_EX` opcode (GH-96752)Nikita Sobolev2022-09-151-0/+1
* Fix type annotation of `pstats.FunctionProfile.ncalls` (#96741)Ruan Comelli2022-09-151-0/+1
* GH-90997: Improve inline cache performance for MSVC (GH-96781)Brandt Bucher2022-09-151-0/+2
* gh-77171 Support WAVE_FORMAT_EXTENSIBLE in the wave module (GH-96777)Yusuke Kadowaki2022-09-141-0/+2
* closes gh-96734: Update to Unicode 15.0.0. (GH-96809)Benjamin Peterson2022-09-131-0/+1
* gh-96678: Fix UB of null pointer arithmetic (GH-96782)Matthias Görgens2022-09-131-0/+1
* gh-93503: Document the new tracing/profiling APIs in the What's new document ...Pablo Galindo Salgado2022-09-131-6/+6
* GH-96754: Check whether the interpreter frame is complete before creating fra...Mark Shannon2022-09-131-0/+3