summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* gh-113149: Improve error message when JSON has trailing comma (GH-113227)Carson Radtke2023-12-174-3/+28
* gh-112890: `unittest` Test Discovery page updated "`unittest` dropped the nam...Taylor Packard2023-12-171-2/+2
* gh-113119 fix environment handling in subprocess.Popen when posix_spawn is us...Jakub Kulík2023-12-175-10/+21
* IDLE: Add util and stub example comments (#113222)Terry Jan Reedy2023-12-172-3/+5
* GH-110109: pathlib tests: store base directory as test class attribute (#113221)Barney Gale2023-12-172-222/+210
* GH-110109: Move tests for pathlib ABCs to new module. (#112904)Barney Gale2023-12-164-1893/+1927
* gh-113202: Add a strict option to itertools.batched() (gh-113203)Raymond Hettinger2023-12-165-24/+60
* gh-67790: Support basic formatting for Fraction (#111320)Mark Dickinson2023-12-165-31/+155
* gh-113046: Revise csv.reader doc (#113207)Terry Jan Reedy2023-12-161-4/+7
* gh-111964: Add _PyRWMutex a "readers-writer" lock (gh-112859)Sam Gross2023-12-163-0/+244
* Add reshape() recipe to demonstrate a use case for batched() and chained.from...Raymond Hettinger2023-12-161-3/+24
* gh-110746: Improve markup in ``tkinter.ttk.rst`` (#111236)Akshat Khandelwal2023-12-152-15/+17
* GH-112383: Fix test_loop_quicken when an executor is installed (GH-113153)Brandt Bucher2023-12-151-2/+7
* gh-101100: Fix various Sphinx warnings for dunder references in the `library/...Alex Waygood2023-12-158-24/+34
* gh-101100: Fix Sphinx nitpicks in `library/numbers.rst` (#113162)Alex Waygood2023-12-152-10/+10
* gh-113172: Fix compiler warnings in Modules/_xxinterpqueuesmodule.c (GH-113173)Serhiy Storchaka2023-12-151-1/+3
* [CVE-2023-27043] gh-102988: Reject malformed addresses in email.parseaddr() (...Victor Stinner2023-12-155-21/+357
* gh-113009: Fix multiprocessing Process.terminate() on Windows (#113128)Victor Stinner2023-12-152-24/+35
* gh-112278: Add retry in WMI tests in case of slow initialization (GH-113154)AN Long2023-12-151-7/+19
* gh-61648: Detect line numbers of properties in doctests (GH-113161)Serhiy Storchaka2023-12-154-0/+21
* GH-111485: Mark some instructions as `TIER_ONE_ONLY` (GH-113155)Brandt Bucher2023-12-153-139/+14
* gh-112720: Move dis's cache output code to the Formatter, labels lookup to th...Irit Katriel2023-12-152-81/+104
* gh-101100: Fix Sphinx nitpicks in `library/rlcompleter.rst` (#113125)Alex Waygood2023-12-153-19/+24
* gh-112535: Update _Py_ThreadId() to support RISC-V (gh-113084)Furkan Onder2023-12-141-0/+7
* Optimize unique_justseen() recipe for a common case. (gh-113147)Raymond Hettinger2023-12-141-0/+2
* gh-101100: Cleanup `mailbox` docs (#113124)Alex Waygood2023-12-142-123/+139
* gh-101100: Fix Sphinx warnings in `whatsnew/2.3.rst` (#112373)Hugo van Kemenade2023-12-142-139/+138
* Remove itertool recipe with low pedagogical value (gh-113138)Raymond Hettinger2023-12-141-32/+32
* gh-101100: Fix Sphinx nitpicks in `library/collections.abc.rst` (#113116)Alex Waygood2023-12-143-41/+43
* Add recipe for totient() to demonstrate unique_justseen() and factor(). (gh-1...Raymond Hettinger2023-12-141-0/+27
* gh-105912: document gotcha with using os.fork on macOS (#112871)Ronald Oussoren2023-12-143-0/+21
* bpo-36796: Clean the error handling in _testcapimodule.c (GH-13085)Zackery Spytz2023-12-142-14/+50
* GH-111485: Sort metadata tables for easier checking of future diffs (GH-113101)Mark Shannon2023-12-142-1509/+1511
* gh-113113: doc: use less ambiguously named variable (gh-113114)jeremy-dolan2023-12-141-3/+3
* gh-86179: Avoid making case-only changes when calculating realpath() during i...Steve Dower2023-12-141-2/+11
* GH-112354: Treat _EXIT_TRACE like an unconditional side exit (GH-113104)Mark Shannon2023-12-145-22/+5
* gh-101100: Fix Sphinx nitpicks in `library/traceback.rst` (#113106)Alex Waygood2023-12-143-38/+75
* gh-101100: Fix Sphinx nitpicks in `library/inspect.rst` and `reference/simple...Alex Waygood2023-12-143-5/+7
* gh-112716: Fix SystemError when __builtins__ is not a dict (GH-112770)Serhiy Storchaka2023-12-143-2/+30
* gh-112730: Update docs for colour env vars (#112837)Hugo van Kemenade2023-12-143-2/+9
* gh-59616: Support os.chmod(follow_symlinks=True) and os.lchmod() on Windows (...Serhiy Storchaka2023-12-149-28/+93
* gh-113090: Fix test.support.os_support.can_chmod() on Windows (GH-113091)Serhiy Storchaka2023-12-144-6/+12
* gh-112205: Update textio module to use `@getter` as possible. (gh-113095)Donghee Na2023-12-142-49/+125
* Fixing typo in DocTestRunner docs (GH-112326)Daniel Wysocki2023-12-141-1/+1
* gh-111049: Fix crash during garbage collection of the BytesIO buffer object (...Serhiy Storchaka2023-12-143-10/+27
* gh-90890: Reorder mailbox.Maildir method documentation (GH-113071)Stephen Gildea2023-12-141-40/+40
* gh-113086: Add tests for os.chmod() and os.lchmod() (GH-113087)Serhiy Storchaka2023-12-142-1/+118
* gh-86179: Implement realpath() on Windows for getpath.py calculations (GH-113...Steve Dower2023-12-134-11/+63
* Move optimizer/executor tests to new file test_capi/test_opt.py (#113072)Guido van Rossum2023-12-132-535/+544
* bpo-40648: Test modes that file can get with chmod() on Windows (GH-20130)Pavol Babinčák‏2023-12-132-0/+8