summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* GH-113528: Deoptimise `pathlib._abc.PathBase.resolve()` (#113782)Barney Gale2024-01-091-25/+40
* GH-113661: unittest runner: Don't exit 5 if tests were skipped (#113856)Stefano Rivera2024-01-095-3/+18
* gh-113781: Silence AttributeError in warning module during Python finalizatio...Serhiy Storchaka2024-01-092-3/+6
* gh-113848: Handle CancelledError subclasses in asyncio TaskGroup() and timeou...Serhiy Storchaka2024-01-093-7/+13
* gh-113848: Use PyErr_GivenExceptionMatches() for check for CancelledError (GH...Serhiy Storchaka2024-01-091-15/+1
* GH-113528: Deoptimise `pathlib._abc.PathBase._make_child_relpath()` (#113532)Barney Gale2024-01-092-14/+17
* Simplify binomial approximation example with random.binomialvariate() (gh-113...Raymond Hettinger2024-01-091-7/+4
* Fix opcode name printing in debug mode (#113870)Guido van Rossum2024-01-091-3/+3
* gh-113650: Add workaround option for MSVC ARM64 bug affecting string encoding...Steve Dower2024-01-091-0/+2
* gh-103092: Test _ctypes type hierarchy and features (#113727)AN Long2024-01-099-5/+130
* gh-87868: Sort and remove duplicates in getenvironment() (GH-102731)AN Long2024-01-093-4/+194
* gh-113842: Add missing error check for PyIter_Next() in Python/symtable.c (GH...Yan Yanchii2024-01-091-0/+6
* gh-101100: Fix Sphinx warnings for 2.6 port-specific deprecations (#113752)Hugo van Kemenade2024-01-092-81/+75
* gh-113692: skip a test if multiprocessing isn't available. (GH-113704)Vinay Sajip2024-01-091-1/+3
* Docs: Link tokens in the format string grammars (#108184)William Andrea2024-01-093-8/+12
* gh-112087: Update list.{pop,clear,reverse,remove} to use CS (gh-113764)Donghee Na2024-01-092-9/+46
* gh-112808: Fix mimalloc build on Solaris (#112809)Jakub Kulík2024-01-081-1/+1
* gh-112806: Remove unused function warnings during mimalloc build on Solaris (...Jakub Kulík2024-01-081-2/+2
* readme: fix displaying issue of command (#113719)mara0042024-01-081-2/+2
* gh-113027: Fix test_variable_tzname in test_email (#113821)Serhiy Storchaka2024-01-081-2/+2
* gh-113827: Move Windows frozen modules directory to allow PGO builds (GH-113828)Steve Dower2024-01-081-1/+1
* GH-111693: Propagate correct asyncio.CancelledError instance out of asyncio.C...Kristján Valur Jónsson2024-01-084-25/+153
* gh-113791: Expose CLOCK_MONOTONIC_RAW_APPROX and CLOCK_UPTIME_RAW_APROX on ma...Ronald Oussoren2024-01-083-6/+30
* GH-113528: Speed up pathlib ABC tests. (#113788)Barney Gale2024-01-082-6/+20
* gh-113688: fix dtrace build on Solaris (#113814)Jakub Kulík2024-01-081-2/+2
* GH-113528: Move a few misplaced pathlib tests (#113527)Barney Gale2024-01-082-86/+86
* Minor algebraic simplification for the totient() recipe (gh-113822)Raymond Hettinger2024-01-081-1/+1
* gh-113755: Fully adapt gcmodule.c to Argument Clinic (#113756)Erlend E. Aasland2024-01-083-28/+175
* gh-113787: Fix refleaks in test_capi (gh-113816)neonene2024-01-082-3/+2
* gh-113391: fix outdated PyObject_HasAttr docs (#113420)Sergey B Kirpichev2024-01-081-3/+2
* gh-110721: Remove unused code from suggestions.c after moving PyErr_Display t...Pablo Galindo Salgado2024-01-0812-225/+117
* gh-74678: Increase base64 test coverage (GH-21913)Zackery Spytz2024-01-081-0/+3
* gh-80109: Fix io.TextIOWrapper dropping the internal buffer during write() (G...Zackery Spytz2024-01-084-8/+24
* gh-73965: Move PYTHON_HISTORY into the correct usage section (#113798)Hugo van Kemenade2024-01-081-1/+1
* gh-73965: New environment variable PYTHON_HISTORY (#13208)Zackery Spytz2024-01-077-3/+50
* gh-112795: Allow `/` folder in a zipfile (#112932)AN Long2024-01-073-1/+16
* gh-89532: Remove LibreSSL workarounds (#28728)Rami2024-01-066-6330/+7
* GH-113528: Deoptimise `pathlib._abc.PurePathBase.relative_to()` (#113529)Barney Gale2024-01-062-2/+5
* GH-113528: Deoptimise `pathlib._abc.PurePathBase.parent` (#113530)Barney Gale2024-01-062-42/+63
* GH-113528: Deoptimise `pathlib._abc.PurePathBase.name` (#113531)Barney Gale2024-01-062-7/+25
* GH-113528: Slightly improve `pathlib.Path.glob()` tests for symlink loop hand...Barney Gale2024-01-061-9/+14
* GH-113528: Split up pathlib tests for invalid basenames. (#113776)Barney Gale2024-01-061-4/+31
* GH-113528: pathlib ABC tests: add repr to dummy path classes. (#113777)Barney Gale2024-01-061-0/+6
* gh-107901: synthetic jumps which are not at end of loop no longer check the e...Irit Katriel2024-01-067-53/+108
* gh-111488: Changed error message in case of no 'in' keyword after 'for' in cm...Grigoriev Semyon2024-01-065-1592/+1820
* gh-113537: support loads str in plistlib.loads (#113582)AN Long2024-01-064-3/+24
* gh-113729: Fix IDLE's Help -> "IDLE Help" menu bug in 3.12.1 and 3.11.7 (#113...Ronald Oussoren2024-01-065-20/+26
* gh-113750: Fix object resurrection in free-threaded builds (gh-113751)Sam Gross2024-01-063-6/+14
* GH-113568: Stop raising deprecation warnings from pathlib ABCs (#113757)Barney Gale2024-01-055-24/+46
* gh-113360: Fix the documentation of module's attribute __test__ (GH-113393)Serhiy Storchaka2024-01-051-3/+3