summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Expand)AuthorAgeFilesLines
...
* gh-111374: Add a new PYTHON_FROZEN_MODULES env var, equivalent of `-X frozen_...Yilei Yang2023-11-012-5/+25
* gh-111576: Improve documention for tkinter.messagebox (GH-111578)Serhiy Storchaka2023-11-011-10/+165
* gh-111282: Fix NamedTemporaryFile example code (GH-111283)Krzysiek Karbowiak2023-10-311-7/+7
* gh-110774: allow setting the Runner(loop_factory=...) from IsolatedAsyncioTes...Thomas Grainger2023-10-311-0/+8
* gh-108082: Add PyErr_FormatUnraisable() function (GH-111086)Serhiy Storchaka2023-10-312-0/+17
* gh-108765: Python.h no longer includes <stddef.h> on Windows (#111563)Victor Stinner2023-10-311-0/+8
* gh-102249: Expand sys.call_tracing documentation (#102806)Quentin Peter2023-10-311-3/+17
* gh-93607: document `root` attribute of `iterparse` (#99410)Prometheus33752023-10-311-1/+3
* gh-106861: Docs: Add availability directives to all Unix-only modules (#108975)xzmeng2023-10-319-6/+14
* gh-111301: Move importlib.resources changes to the Removed section (#111509)Karolina Surma2023-10-311-14/+18
* gh-111301: Move `importlib.resources.files` change to What's new in Python 3....Karolina Surma2023-10-312-1/+3
* gh-111181: Fix enum doctests (GH-111180)Nikita Sobolev2023-10-301-3/+6
* gh-108082: C API: Add tests for PyErr_WriteUnraisable() (GH-111455)Serhiy Storchaka2023-10-301-0/+8
* gh-90815: Add mimalloc memory allocator (#109914)Dino Viehland2023-10-305-0/+59
* gh-111165: Remove documentation for moved functions (GH-111467)Serhiy Storchaka2023-10-291-10/+0
* gh-101100: Fix sphinx warnings in `library/asyncio-eventloop.rst` (GH-111222)Nikita Sobolev2023-10-293-7/+15
* gh-79033: Try to fix asyncio.Server.wait_closed() again (GH-111336)Guido van Rossum2023-10-281-3/+5
* gh-108765: Include explicitly <unistd.h> in signalmodule.c (#111402)Victor Stinner2023-10-271-1/+2
* gh-111406: Fix broken link to bpython's site (#111407)Zack Cerza2023-10-271-1/+1
* Fix typos in import system docs (#111396)Jonathan Berthias2023-10-271-3/+3
* gh-111388: Add `show_group` parameter to `traceback.format_exception_only` (#...Nikita Sobolev2023-10-271-1/+8
* gh-111276: Clarify docs and comments about the role of LC_CTYPE (#111319)Łukasz Langa2023-10-271-5/+10
* gh-89519: Remove classmethod descriptor chaining, deprecated since 3.11 (gh-1...Raymond Hettinger2023-10-273-32/+19
* gh-111343: Fix `itertools` docs: `start` arg is optional for `count` (gh-111344)Nikita Sobolev2023-10-271-1/+1
* Docs: Add `restart_events()` and positional arg semantics for `sys.monitoring...Tian Gao2023-10-251-8/+13
* gh-110679: Improved markup in enum.rst (GH-110747)Khalil Mouawad2023-10-251-15/+15
* gh-108590: Improve sqlite3 docs on encoding issues and how to handle those (#...Erlend E. Aasland2023-10-251-33/+50
* gh-111187: Postpone removal version for locale.getdefaultlocale() to 3.15 (#1...Hugo van Kemenade2023-10-254-7/+20
* gh-111165: Move test running code from test.support to libregrtest (GH-111166)Serhiy Storchaka2023-10-251-28/+0
* Fix first parameter name in `tool` functions from `sys.monitoring` (#111286)Pavel Karateev2023-10-241-9/+9
* GH-111182: Update EnumType.__contains__ docs (GH-111184)InSync2023-10-241-3/+4
* Revert "Fix a code snippet typo in asyncio docs (#108427)" (GH-111271)Zachary Ware2023-10-241-1/+1
* gh-111151: Convert monospaced directives to :ref: (#111152)InSync2023-10-243-8/+20
* gh-97928: Change the behavior of tkinter.Text.count() (GH-98484)Serhiy Storchaka2023-10-241-1/+9
* Fix typo in sys docs (#111196)James Tocknell2023-10-241-1/+1
* gh-101100: Fix Sphinx warnings for `fileno` (#111118)Hugo van Kemenade2023-10-238-13/+49
* Add a version added note for PY_VECTORCALL_ARGUMENTS_OFFSET (#110963)Anthony Shaw2023-10-231-0/+2
* typo: missing line of output in pull parser example (#111068)Don Patterson2023-10-231-0/+1
* Fix typo in 3.13's whatsnew (#111215)Pablo Martí Gamboa2023-10-231-1/+1
* gh-110383: Italicize variable name (#111206)Nick2023-10-231-1/+1
* gh-110383: Added explanation about simplest regex use case for quantifiers. (...Nick2023-10-231-0/+3
* gh-109975: What's new in 3.13: Add module headers to removals and sort (#110994)Hugo van Kemenade2023-10-221-66/+107
* gh-101100: Fix sphinx warnings in `library/asyncio-dev.rst` (GH-111179)Nikita Sobolev2023-10-222-4/+11
* gh-101100: Fix Sphinx warning in `tutorial/introduction.rst` (#111173)Maciej Olko2023-10-222-2/+1
* gh-109975: What's new in 3.13: Add PEP 594 to release highlights (#110993)Hugo van Kemenade2023-10-221-113/+127
* gh-111123: symtable should visit exception handlers before the else block (#1...Irit Katriel2023-10-211-0/+4
* gh-106310 - document the __signature__ attribute (#106311)Gouvernathor2023-10-201-0/+5
* gh-111089: PyUnicode_AsUTF8AndSize() sets size on error (#111106)Victor Stinner2023-10-201-2/+2
* gh-111089: Add PyUnicode_AsUTF8() to the limited C API (#111121)Victor Stinner2023-10-202-0/+4
* gh-111089: PyUnicode_AsUTF8() now raises on embedded NUL (#111091)Victor Stinner2023-10-202-0/+14