Skip to content

Commit 6278944

Browse files
committed
Python 3.13.11
1 parent 93d5c48 commit 6278944

10 files changed

+72
-27
lines changed

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
/*--start constants--*/
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 13
21-
#define PY_MICRO_VERSION 10
21+
#define PY_MICRO_VERSION 11
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
2323
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.13.10+"
26+
#define PY_VERSION "3.13.11"
2727
/*--end constants--*/
2828

2929
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

Lib/pydoc_data/topics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Autogenerated by Sphinx on Tue Dec 2 13:49:46 2025
1+
# Autogenerated by Sphinx on Fri Dec 5 17:06:29 2025
22
# as part of the release process.
33

44
topics = {

Misc/NEWS.d/3.13.11.rst

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
.. date: 2025-12-01-09-36-45
2+
.. gh-issue: 142145
3+
.. nonce: tcAUhg
4+
.. release date: 2025-12-05
5+
.. section: Security
6+
7+
Remove quadratic behavior in ``xml.minidom`` node ID cache clearing.
8+
9+
..
10+
11+
.. date: 2024-05-23-11-47-48
12+
.. gh-issue: 119451
13+
.. nonce: qkJe9-
14+
.. section: Security
15+
16+
Fix a potential memory denial of service in the :mod:`http.client` module.
17+
When connecting to a malicious server, it could cause an arbitrary amount of
18+
memory to be allocated. This could have led to symptoms including a
19+
:exc:`MemoryError`, swapping, out of memory (OOM) killed processes or
20+
containers, or even system crashes.
21+
22+
..
23+
24+
.. date: 2024-05-23-11-44-41
25+
.. gh-issue: 119452
26+
.. nonce: PRfsSv
27+
.. section: Security
28+
29+
Fix a potential memory denial of service in the :mod:`http.server` module.
30+
When a malicious user is connected to the CGI server on Windows, it could
31+
cause an arbitrary amount of memory to be allocated. This could have led to
32+
symptoms including a :exc:`MemoryError`, swapping, out of memory (OOM)
33+
killed processes or containers, or even system crashes.
34+
35+
..
36+
37+
.. date: 2025-12-03-19-33-17
38+
.. gh-issue: 140797
39+
.. nonce: YxB27u
40+
.. section: Library
41+
42+
Revert changes to the undocumented :class:`!re.Scanner` class. Capturing
43+
groups are still allowed for backward compatibility, although using them can
44+
lead to incorrect result. They will be forbidden in future Python versions.
45+
46+
..
47+
48+
.. date: 2025-12-03-09-36-29
49+
.. gh-issue: 142206
50+
.. nonce: ilwegH
51+
.. section: Library
52+
53+
The resource tracker in the :mod:`multiprocessing` module now uses the
54+
original communication protocol, as in Python 3.14.0 and below, by default.
55+
This avoids issues with upgrading Python while it is running. (Note that
56+
such 'in-place' upgrades are not tested.) The tracker remains compatible
57+
with subprocesses that use new protocol (that is, subprocesses using Python
58+
3.13.10, 3.14.1 and 3.15).
59+
60+
..
61+
62+
.. date: 2025-12-03-11-03-35
63+
.. gh-issue: 142218
64+
.. nonce: 44Fq_J
65+
.. section: Core and Builtins
66+
67+
Fix crash when inserting into a split table dictionary with a non
68+
:class:`str` key that matches an existing key.

Misc/NEWS.d/next/Core and Builtins/2025-12-03-11-03-35.gh-issue-142218.44Fq_J.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

Misc/NEWS.d/next/Library/2025-12-03-09-36-29.gh-issue-142206.ilwegH.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

Misc/NEWS.d/next/Library/2025-12-03-19-33-17.gh-issue-140797.YxB27u.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

Misc/NEWS.d/next/Security/2024-05-23-11-44-41.gh-issue-119452.PRfsSv.rst

Lines changed: 0 additions & 5 deletions
This file was deleted.

Misc/NEWS.d/next/Security/2024-05-23-11-47-48.gh-issue-119451.qkJe9-.rst

Lines changed: 0 additions & 5 deletions
This file was deleted.

Misc/NEWS.d/next/Security/2025-12-01-09-36-45.gh-issue-142145.tcAUhg.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This is Python version 3.13.10
1+
This is Python version 3.13.11
22
==============================
33

44
.. image:: https://github.com/python/cpython/workflows/Tests/badge.svg

0 commit comments

Comments
 (0)