summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-111545: Add Py_HashPointer() function (#112096)Victor Stinner2023-12-069-22/+103
* gh-108223: Refer to PEP 703 as Free Threading (#112780)Victor Stinner2023-12-062-2/+5
* gh-111178: Docs: fix `traverseproc`, `inquiry`, and `destructor` parameters i...Christopher Chavez2023-12-061-3/+3
* gh-101100: Fix most Sphinx nitpicks in the glossary and `stdtypes.rst` (#112757)Alex Waygood2023-12-062-32/+41
* gh-108927: Include new dir test/regrtestdata in the installation (GH-112765)Serhiy Storchaka2023-12-061-0/+3
* gh-112606: Use sem_clockwait with monotonic time when supported in parking_lo...Matt Prodani2023-12-061-2/+11
* gh-112769: test_zlib: Fix comparison of ZLIB_RUNTIME_VERSION with non-int suf...Miro Hrončok2023-12-052-12/+20
* gh-101100: Properly document frame object attributes (#112735)Alex Waygood2023-12-0512-49/+88
* Minor stylistic edit to the grouper recipe (gh112759)Jurjen N. E. Bos2023-12-051-2/+2
* bpo-35332: Handle os.close() errors in shutil.rmtree() (GH-23766)Zackery Spytz2023-12-053-2/+56
* gh-112328: [Enum] Make some private attributes public. (GH-112514)Ethan Furman2023-12-055-117/+301
* gh-94692: Only catch OSError in shutil.rmtree() (#112756)Serhiy Storchaka2023-12-053-19/+22
* gh-110190: Fix ctypes structs with array on Arm (#112604)Diego Russo2023-12-054-20/+193
* gh-105323: Remove `WITH_APPLE_EDITLINE` to use the same declaration for all e...Tian Gao2023-12-054-36/+2
* bpo-43153: Don't mask `PermissionError` with `NotADirectoryError` during temp...Ken Jin2023-12-053-2/+41
* gh-112535: Add comment for ppc32/64 registers (gh-112746)Donghee Na2023-12-051-0/+2
* gh-101100: Fix many easily solvable Sphinx nitpicks in the datamodel docs (#1...Alex Waygood2023-12-052-29/+37
* gh-81441: shutil.rmtree() FileNotFoundError race condition (GH-14064)Jeffrey Kintscher2023-12-054-11/+97
* gh-62897: Update PyUnicode C API parameter names (GH-12680)Rune Tynan2023-12-051-91/+91
* gh-112535: Update _Py_ThreadId() to support PowerPC (gh-112624)Donghee Na2023-12-051-0/+16
* gh-82300: Add track parameter to multiprocessing.shared_memory (#110778)pan3242023-12-054-23/+106
* Minor refactoring of Object/abstract.c (UNARY_FUNC macro and more cases for B...Sergey B Kirpichev2023-12-051-90/+25
* gh-102130: Support tab completion in cmd for Libedit. (GH-107748)Constantin Hong2023-12-055-1/+51
* gh-112736: Refactor del-safe symbol handling in subprocess (#112738)Russell Keith-Magee2023-12-052-24/+25
* GH-112727: Speed up `pathlib.Path.absolute()` (#112728)Barney Gale2023-12-042-6/+15
* gh-112334: Restore subprocess's use of `vfork()` & fix `extra_groups=[]` beha...Gregory P. Smith2023-12-043-23/+38
* gh-112535: Add test on _Py_ThreadId() (#112709)Victor Stinner2023-12-046-8/+75
* gh-112671: Fixing typo in the Macro Docs (GH-112715)Amioplk2023-12-041-1/+1
* gh-105967: Work around a macOS bug, limit zlib C library crc32 API calls to 1...Gregory P. Smith2023-12-043-10/+30
* gh-103363: Add follow_symlinks argument to `pathlib.Path.owner()` and `group(...Kamil Turek2023-12-045-24/+93
* gh-74690: Avoid a costly type check where possible in `_ProtocolMeta.__subcla...Alex Waygood2023-12-043-6/+37
* gh-112516: Update bundled pip version to 23.3.1 (gh-112517)Thomas Bininda2023-12-043-1/+2
* gh-108927: Fix removing testing modules from sys.modules (GH-108952)Serhiy Storchaka2023-12-048-9/+67
* gh-74690: Optimise `isinstance()` and `issubclass()` calls against runtime-ch...Alex Waygood2023-12-042-3/+16
* gh-101100: Fix Sphinx nitpicks in `library/abc.rst` (#112703)Alex Waygood2023-12-042-22/+21
* gh-109786: Fix leaks and crash when re-enter itertools.pairwise.__next__() (G...Serhiy Storchaka2023-12-043-2/+85
* gh-110275: Named tuple's __replace__() now raises TypeError for invalid argum...Serhiy Storchaka2023-12-045-7/+9
* gh-65210: Add const qualifiers in PyArg_VaParseTupleAndKeywords() (GH-105958)Serhiy Storchaka2023-12-047-13/+57
* gh-101100: Fix Sphinx nitpicks in `library/functions.rst` (#112669)Alex Waygood2023-12-042-47/+67
* gh-106550: Fix sign conversion in pycore_code.h (#112613)Victor Stinner2023-12-041-10/+12
* bpo-34392: Add sys. _is_interned() (GH-8755)Serhiy Storchaka2023-12-046-1/+87
* gh-112625: Protect bytearray from being freed by misbehaving iterator inside ...chilaxan2023-12-043-1/+22
* gh-112678: Declare `Tkapp_CallDeallocArgs()` as `static` (GH-112679)Christopher Chavez2023-12-041-1/+1
* gh-66819: More IDLE htest updates(4) (#112686)Terry Jan Reedy2023-12-0425-34/+62
* gh-66819: More IDLE htest updates(3) (#112683)Terry Jan Reedy2023-12-046-26/+27
* GH-106747: Improve `Path.glob()` expectations in pathlib tests (#112365)Barney Gale2023-12-031-33/+33
* gh-101100: Fix Sphinx warning in `library/gettext.rst` (#112668)Hugo van Kemenade2023-12-032-8/+7
* gh-101100: Fix most Sphinx nitpicks in `inspect.rst` (#112662)Alex Waygood2023-12-035-9/+19
* Fix link to 'The Perils of Floating Point', on the tutorial (GH-112499)Marco Aurélio A. Barbosa2023-12-031-1/+1
* gh-112645: remove deprecation warning for use of onerror in shutil.rmtree (#1...Irit Katriel2023-12-034-19/+9