summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
...
* GH-113853: Guarantee forward progress in executors (GH-113854)Mark Shannon2024-01-111-0/+2
* gh-107901: jump leaving an exception handler doesn't need an eval break check...Irit Katriel2024-01-111-0/+1
* gh-112640: Add `kwdefaults` parameter to `types.FunctionType.__new__` (#112641)Nikita Sobolev2024-01-111-0/+2
* gh-89811: Check for valid tp_version_tag in specializer (GH-113558)Peter Lazorchak2024-01-111-0/+2
* gh-77046: os.pipe() sets _O_NOINHERIT flag on fds (#113817)Victor Stinner2024-01-101-0/+3
* gh-113753: Clear finalized bit when putting PyAsyncGenASend back into free li...Sam Gross2024-01-101-0/+2
* gh-109858: Protect zipfile from "quoted-overlap" zipbomb (GH-110016)Serhiy Storchaka2024-01-101-0/+3
* gh-89850: Add default C implementations of persistent_id() and persistent_loa...Serhiy Storchaka2024-01-101-0/+5
* gh-113664: Improve style of Big O notation (GH-113695)Serhiy Storchaka2024-01-103-3/+3
* gh-113594: Fix UnicodeEncodeError in TokenList.fold() (GH-113730)Serhiy Storchaka2024-01-101-0/+2
* gh-96037: Always insert TimeoutError when exit an expired asyncio.timeout() b...Serhiy Storchaka2024-01-101-0/+2
* gh-113877: Fix Tkinter method winfo_pathname() on 64-bit Windows (GH-113900)Serhiy Storchaka2024-01-101-0/+1
* gh-112182: Replace StopIteration with RuntimeError for future (#113220)Jamie Phan2024-01-101-0/+3
* gh-66060: Use actual class name in _io type's __repr__ (#30824)AN Long2024-01-091-0/+3
* GH-113661: unittest runner: Don't exit 5 if tests were skipped (#113856)Stefano Rivera2024-01-091-0/+3
* gh-113781: Silence AttributeError in warning module during Python finalizatio...Serhiy Storchaka2024-01-091-0/+2
* gh-113848: Handle CancelledError subclasses in asyncio TaskGroup() and timeou...Serhiy Storchaka2024-01-091-0/+3
* gh-87868: Sort and remove duplicates in getenvironment() (GH-102731)AN Long2024-01-091-0/+2
* GH-111693: Propagate correct asyncio.CancelledError instance out of asyncio.C...Kristján Valur Jónsson2024-01-081-0/+1
* gh-113791: Expose CLOCK_MONOTONIC_RAW_APPROX and CLOCK_UPTIME_RAW_APROX on ma...Ronald Oussoren2024-01-081-0/+2
* gh-80109: Fix io.TextIOWrapper dropping the internal buffer during write() (G...Zackery Spytz2024-01-081-0/+2
* gh-73965: New environment variable PYTHON_HISTORY (#13208)Zackery Spytz2024-01-072-0/+5
* gh-112795: Allow `/` folder in a zipfile (#112932)AN Long2024-01-071-0/+3
* gh-89532: Remove LibreSSL workarounds (#28728)Rami2024-01-061-0/+1
* gh-107901: synthetic jumps which are not at end of loop no longer check the e...Irit Katriel2024-01-061-0/+1
* gh-111488: Changed error message in case of no 'in' keyword after 'for' in cm...Grigoriev Semyon2024-01-062-0/+3
* gh-113537: support loads str in plistlib.loads (#113582)AN Long2024-01-061-0/+1
* gh-113729: Fix IDLE's Help -> "IDLE Help" menu bug in 3.12.1 and 3.11.7 (#113...Ronald Oussoren2024-01-061-0/+1
* GH-113568: Stop raising deprecation warnings from pathlib ABCs (#113757)Barney Gale2024-01-051-0/+2
* gh-85567: Fix resouce warnings in pickle and pickletools CLIs (GH-113618)Serhiy Storchaka2024-01-051-0/+2
* GH-113568: Stop raising auditing events from pathlib ABCs (#113571)Barney Gale2024-01-051-0/+2
* gh-80532: Do not set ipv6type when cross-compiling (#17956)Zackery Spytz2024-01-051-0/+1
* gh-113703: Correctly identify incomplete f-strings in the codeop module (#113...Pablo Galindo Salgado2024-01-051-0/+2
* GH-113486: Do not emit spurious PY_UNWIND events for optimized calls to class...Mark Shannon2024-01-051-0/+1
* gh-113320: Reduce the number of dangerous `getattr()` calls when constructing...Alex Waygood2024-01-051-0/+4
* GH-113225: Speed up `pathlib.Path.glob()` (#113226)Barney Gale2024-01-041-0/+1
* gh-113538: Don't error in stream reader protocol callback when task is cancel...Guido van Rossum2024-01-041-0/+5
* gh-113569: Display calls in Mock.assert_has_calls failure when empty (GH-113573)wookie1842024-01-041-0/+2
* gh-52161: Enhance Cmd support for docstrings (#110987)Filip Łapkiewicz2024-01-031-0/+2
* Document the `co_lines` method on code objects (#113682)Alex Waygood2024-01-031-2/+2
* gh-113258: Write frozen modules to the build tree on Windows (GH-113303)Itamar Oren2024-01-031-0/+2
* gh-113603: Compiler no longer tries to maintain the no-empty-block invariant ...Irit Katriel2024-01-031-0/+1
* gh-101100: Fix Sphinx warnings for removed dead batteries (#113669)Hugo van Kemenade2024-01-037-10/+10
* gh-113637: Let c_annotations.py to handle the spacing of Limited/Unstable API...Ege Akman2024-01-031-0/+1
* GH-113657: Add back missing _SET_IP uops in tier two (GH-113662)Brandt Bucher2024-01-021-0/+2
* gh-113602: Bail out when the parser tries to override existing errors (#113607)Pablo Galindo Salgado2024-01-021-0/+2
* gh-101100: Fix Sphinx warnings from removed `~!` references (#113629)Hugo van Kemenade2024-01-023-7/+7
* GH-113633: Use module state structure for _testcapi. (GH-113634)Neil Schemenauer2024-01-011-0/+1
* gh-53502: add a new option aware_datetime in plistlib to loads or dumps aware...AN Long2024-01-011-0/+2
* gh-113536: Expose `os.waitid` on macOS (#113542)Ronald Oussoren2024-01-011-0/+1