summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Add --with-lto back to Linux JIT CI (GH-120921)Savannah Ostrowski2024-06-241-4/+2
* GH-119054: Add "Permissions and ownership" section to pathlib docs. (#120505)Barney Gale2024-06-241-47/+51
* gh-120858: PyDict_Next should not lock the dict (#120859)Sam Gross2024-06-244-8/+34
* gh-120860: Fix a few bugs in `type_setattro` error paths. (#120861)Sam Gross2024-06-241-37/+41
* Fix typos in comments (#120821)Xie Yanbo2024-06-248-10/+10
* gh-120834: fix over-allocation in PyGenObject, PyCoroObject, PyAsyncGenObject...Irit Katriel2024-06-241-3/+3
* gh-120956: Avoid comparison of int to Py_ssize_t in parser (#120959)Lysandros Nikolaou2024-06-242-117/+117
* Fixes loop variables to be the same types as their limit (GH-120958)Steve Dower2024-06-2414-26/+26
* gh-119182: Add PyUnicodeWriter_WriteUCS4() function (#120849)Victor Stinner2024-06-247-6/+131
* GH-117062: Make _JUMP_TO_TOP a general absolute jump (GH-120854)Brandt Bucher2024-06-245-12/+7
* gh-119521: Use `PyAPI_DATA`, not `extern`, for `_PyExc_IncompleteInputError` ...Petr Viktorin2024-06-241-1/+2
* gh-70278: Fix PyUnicode_FromFormat() with precision for %s and %V (GH-120365)Serhiy Storchaka2024-06-243-4/+59
* docs: puremagic.what() as replacement for imghdr.what() (#120871)Christian Clauss2024-06-241-0/+3
* gh-120373: Mark test_audit.test_http as requiring the network resource (#120374)Itamar Oren2024-06-241-0/+1
* gh-119521: Rename IncompleteInputError to _IncompleteInputError and remove fr...Pablo Galindo Salgado2024-06-2411-17/+20
* gh-120834: fix type of *_iframe field in _PyGenObject_HEAD declaration (#120835)Irit Katriel2024-06-2412-79/+81
* gh-119614: Fix truncation of strings with embedded null characters in Tkinter...Serhiy Storchaka2024-06-244-7/+68
* gh-112169: Documented getaddrinfo/getnameinfo default loop executor usage and...Alek Kowalczyk2024-06-241-0/+8
* gh-120683: Fix an error in logging.LogRecord timestamp (GH-120709)Serhiy Storchaka2024-06-243-3/+15
* Use _PyLong_IsNegative instead of _PyLong_Sign if appropriate. (GH-120493)Serhiy Storchaka2024-06-243-7/+3
* GH-73991: Add `pathlib.Path.copytree()` (#120718)Barney Gale2024-06-236-0/+231
* Docs makefile/RTD: Use uv if installed (#120711)Hugo van Kemenade2024-06-232-6/+22
* gh-120910: Fix issue resolving relative paths outside site-packages. (#120911)Jason R. Coombs2024-06-234-1/+38
* Typing docs: normalize some indents in code examples (#120912)Nyakku Shigure2024-06-231-4/+5
* gh-101830: Fix Tcl_Obj to string conversion (GH-120884)Serhiy Storchaka2024-06-233-22/+78
* GH-120804: add docs for removal for asyncio child watchers (#120895)Kumar Aditya2024-06-237-214/+31
* GH-120804: Remove `PidfdChildWatcher`, `ThreadedChildWatcher` and `AbstractCh...Kumar Aditya2024-06-235-259/+39
* gh-120896: Fix typo in version changed note of `urllib.parse.urlparse()` (#12...Nice Zombies2024-06-231-1/+1
* GH-120804: Remove `get_child_watcher` and `set_child_watcher` from asyncio (#...Kumar Aditya2024-06-236-227/+18
* GH-107803: double linked list implementation for asyncio tasks (GH-107804)Kumar Aditya2024-06-228-97/+375
* gh-119182: Add checks to PyUnicodeWriter APIs (#120870)Victor Stinner2024-06-221-0/+13
* gh-120873: Add tests for new widget options in Tk 8.7 (GH-120877)Serhiy Storchaka2024-06-223-36/+104
* gh-120873: Add test for "state" option in ttk.Scale (GH-120874)Serhiy Storchaka2024-06-221-12/+10
* gh-119182: Use PyUnicodeWriter_WriteWideChar() (#120851)Victor Stinner2024-06-221-6/+8
* gh-104855: Update Tkinter tests for Tcl/Tk 8.7 and 9.0 (GH-120824)Serhiy Storchaka2024-06-226-137/+250
* gh-119344: Make critical section API public (#119353)Sam Gross2024-06-2115-225/+459
* gh-120838: Add a Note in the Docs About Expectations for Py_Finalize() (gh-12...Eric Snow2024-06-211-3/+10
* gh-119003: Clarify slice assignments (#119935)Nice Zombies2024-06-211-1/+1
* Amend categories of @nineteendo's news entries (#120735)Nice Zombies2024-06-214-93/+93
* gh-119182: Rewrite PyUnicodeWriter tests in Python (#120845)Victor Stinner2024-06-212-262/+336
* gh-119182: Add PyUnicodeWriter_DecodeUTF8Stateful() (#120639)Victor Stinner2024-06-215-68/+332
* gh-120811: Fix reference leak upon `_PyContext_Exit` failure (#120812)Peter2024-06-212-0/+2
* gh-120782: Update internal type cache when reloading datetime (#120829)neonene2024-06-213-0/+24
* gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...Petr Viktorin2024-06-2142-1136/+2460
* gh-120380: fix Python implementation of `pickle.Pickler` for `bytes` and `byt...Bénédikt Tran2024-06-213-21/+81
* gh-120773: document introspective attributes of an async generator object in ...blhsing2024-06-211-214/+227
* gh-120384: Fix array-out-of-bounds crash in `list_ass_subscript` (#120442)Nikita Sobolev2024-06-214-12/+58
* GH-120804: Remove SafeChildWatcher, FastChildWatcher and MultiLoopChildWatche...Kumar Aditya2024-06-215-1041/+4
* gh-111259: Document idiomatic RE pattern (?s:.) that matches any character (G...Serhiy Storchaka2024-06-201-1/+1
* gh-119182: Use public PyUnicodeWriter in contextvar_tp_repr() (#120809)Victor Stinner2024-06-201-32/+15