summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* [3.12] gh-107909: Test explicit `object` base in PEP695 generic classes (GH-1...Miss Islington (bot)2023-08-171-0/+4
* [3.12] GH-92584: Remove Installing Python Modules (Distutils version) (GH-108...Adam Turner2023-08-175-1090/+3
* [3.12] gh-107298: Fix some references in the C API documentation (GH-108072) ...Miss Islington (bot)2023-08-1711-20/+20
* [3.12] gh-107298: Add standard exceptions and warnings in the nitpick_ignore ...Miss Islington (bot)2023-08-171-0/+71
* [3.12] gh-108000: Test that `lambda` also has `__type_params__` (GH-108002) (...Miss Islington (bot)2023-08-171-7/+10
* [3.12] GH-107987: Remove the Distributing Python Modules guide (GH-108016) (#...Miss Islington (bot)2023-08-175-170/+16
* [3.12] GH-92584: Remove references to Distutils in configure.rst (GH-108043) ...Miss Islington (bot)2023-08-161-11/+6
* [3.12] GH-92584: Redirect macOS package installation to the PPUG (GH-108044) ...Miss Islington (bot)2023-08-161-6/+2
* [3.12] GH-92584: Remove references to Distutils in ``PYTHONUSERBASE`` (GH-108...Miss Islington (bot)2023-08-162-4/+4
* [3.12] gh-107298: Fix C API Buffer documentation (GH-108011). (#108048)Serhiy Storchaka2023-08-163-11/+14
* [3.12] gh-106242: Fix path truncation in os.path.normpath (GH-106816) (#107981)Steve Dower2023-08-165-10/+31
* [3.12] GH-92584: Remove reference to Distutils in ``cx_Freeze``'s description...Miss Islington (bot)2023-08-161-2/+2
* [3.12] gh-91051: fix type watcher test to be robust to existing watcher (GH-1...Miss Islington (bot)2023-08-161-6/+4
* [3.12] Remove Sphinx problem matcher to avoid annotating unchanged files (GH-...Miss Islington (bot)2023-08-162-44/+0
* [3.12] GH-92584: Drop reference to Distutils in ``site.USER_BASE`` (GH-108031...Miss Islington (bot)2023-08-161-1/+1
* [3.12] gh-104496: Use correct Tcl or Tk version in Tkinter tests (GH-107688) ...Miss Islington (bot)2023-08-167-39/+30
* [3.12] Docs: Fix more Sphinx annotations in ctypes.rst (GH-107708) (#107717)Miss Islington (bot)2023-08-163-43/+44
* [3.12] gh-100814: Fix exception for invalid callable value of Tkinter image o...Miss Islington (bot)2023-08-163-4/+18
* [3.12] gh-107715: Escape class name in regular expression (GH-107716) (#107726)Miss Islington (bot)2023-08-162-1/+2
* [3.12] gh-107178: Add the C API tests for the Abstract Objects Layer (GH-1071...Serhiy Storchaka2023-08-1613-299/+1955
* [3.12] gh-107735: Add C API tests for PySys_GetObject() and PySys_SetObject()...Serhiy Storchaka2023-08-162-0/+83
* [3.12] gh-86457: Fix signature for code.replace() (GH-23199) (#107744)Serhiy Storchaka2023-08-164-172/+177
* [3.12] README: remove unmaintained sections (GH-107703) (#107762)Miss Islington (bot)2023-08-161-24/+0
* [3.12] gh-91795: Update build optimization part of PCbuild/readme.txt (GH-918...Miss Islington (bot)2023-08-161-3/+5
* [3.12] More actionable error message when spawn is incorrectly used. (GH-1022...Miss Islington (bot)2023-08-161-1/+5
* [3.12] gh-99203: shutil.make_archive(): restore select CPython <= 3.10.5 beha...Miss Islington (bot)2023-08-163-0/+52
* [3.12] gh-106300: Improve errors testing in test_unittest.test_runner (GH-106...Miss Islington (bot)2023-08-161-52/+65
* [3.12] gh-106844: Fix issues in _winapi.LCMapStringEx (GH-107832) (#107874)Serhiy Storchaka2023-08-164-16/+32
* [3.12] gh-107080: Fix Py_TRACE_REFS Crashes Under Isolated Subinterpreters (#...Eric Snow2023-08-168-30/+93
* [3.12] gh-100061: Proper fix of the bug in the matching of possessive quantif...Serhiy Storchaka2023-08-164-9/+16
* [3.12] gh-91051: fix segfault when using all 8 type watchers (GH-107853) (#10...Miss Islington (bot)2023-08-166-26468/+26475
* [3.12] gh-107963: Fix set_forkserver_preload to check the type of given list ...Miss Islington (bot)2023-08-153-1/+11
* [3.12] gh-107967: Fix infinite recursion on invalid escape sequence warning (...Miss Islington (bot)2023-08-152-0/+13
* [3.12] Add another example to the statistics docs (GH-107904) (#107941)Miss Islington (bot)2023-08-142-0/+57
* [3.12] gh-107877: Update logging levels reference table with usage criteria. ...Miss Islington (bot)2023-08-141-15/+33
* [3.12] gh-107891: Fix typo in 3.12 whatsnew (GH-107892) (#107893)Miss Islington (bot)2023-08-141-1/+1
* [3.12] Docs: Document PyBUF_MAX_NDIM (GH-107865) (#107871)Miss Islington (bot)2023-08-111-3/+7
* [3.12] gh-91054: make code watcher tests resilient to other watchers (GH-1078...Miss Islington (bot)2023-08-112-3/+12
* [3.12] gh-107810: Improve DeprecationWarning for metaclasses with custom tp_n...Miss Islington (bot)2023-08-113-4/+5
* [3.12] Fix the long64 reader in umarshal.py (GH-107828) (#107849)Miss Islington (bot)2023-08-111-4/+4
* [3.12] GH-107774: Add missing audit event for PEP 669 (GH-107775) (#107839)Miss Islington (bot)2023-08-114-0/+30
* [3.12] GH-107724: Fix the signature of `PY_THROW` callback functions. (GH-107...Miss Islington (bot)2023-08-116-18/+39
* [3.12] GH-106684: Close `asyncio.StreamWriter` when `asyncio.StreamWriter` i...Miss Islington (bot)2023-08-102-0/+5
* [3.12] gh-107814: Avoid output from Nuget installation in find_python.bat (GH...Miss Islington (bot)2023-08-102-2/+7
* [3.12] gh-106052: Fix bug in the matching of possessive quantifiers (GH-10651...Serhiy Storchaka2023-08-093-0/+21
* [3.12] gh-98154: Clarify Usage of "Reference Count" In the Docs (gh-107552) (...Miss Islington (bot)2023-08-0815-90/+162
* [3.12] gh-107442: Document all valid types for ctypes _as_parameter_ (GH-1074...Miss Islington (bot)2023-08-071-3/+4
* [3.12] Docs: Argument Clinic: Move the CConverter class to the reference (GH-...Miss Islington (bot)2023-08-071-64/+69
* [3.12] Improve cross-references in `runpy` docs (GH-107673) (#107698)Miss Islington (bot)2023-08-061-12/+13
* [3.12] Docs: Argument Clinic: Improve 'How to write a custom converter' (GH-1...Miss Islington (bot)2023-08-061-24/+26