10000 Python 3.10.16 · python/cpython@8907786 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8907786

Browse files
committed
Python 3.10.16
1 parent b58da40 commit 8907786

10 files changed

+64
-17
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 10
21-
#define PY_MICRO_VERSION 15
21+
#define PY_MICRO_VERSION 16
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.10.15+"
26+
#define PY_VERSION "3.10.16"
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,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Sat Sep 7 01:19:53 2024
2+
# Autogenerated by Sphinx on Tue Dec 3 12:26:47 2024
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'

Misc/NEWS.d/3.10.16.rst

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
.. date: 2024-10-07-14-13-38
2+
.. gh-issue: 125041
3+
.. nonce: PKLWDf
4+
.. release date: 2024-12-03
5+
.. section: Tests
6+
7+
Re-enable skipped tests for :mod:`zlib` on the s390x architecture: only skip
8+
checks of the compressed bytes, which can be different between zlib's
9+
software implementation and the hardware-accelerated implementation.
10+
11+
..
12+
13+
.. date: 2023-09-14-22-58-47
14+
.. gh-issue: 109396
15+
.. nonce: J1a4jR
16+
.. section: Tests
17+
18+
Fix ``test_socket.test_hmac_sha1()`` in FIPS mode. Use a longer key: FIPS
19+
mode requires at least of at least 112 bits. The previous key was only 32
20+
bits. Patch by Victor Stinner.
21+
22+
..
23+
24+
.. date: 2024-11-13-11-09-12
25+
.. gh-issue: 126623
26+
.. nonce: TO7NnR
27+
.. section: Security
28+
29+
Upgrade libexpat to 2.6.4
30+
31+
..
32+
33+
.. date: 2024-08-07-10-42-13
34+
.. gh-issue: 122792
35+
.. nonce: oiTMo9
36+
.. section: Security
37+
38+
Changed IPv4-mapped ``ipaddress.IPv6Address`` to consistently use the mapped
39+
IPv4 address value for deciding properties. Properties which have their
40+
behavior fixed are ``is_multicast``, ``is_reserved``, ``is_link_local``,
41+
``is_global``, and ``is_unspecified``.
42+
43+
..
44+
45+
.. date: 2024-09-28-02-03-04
46+
.. gh-issue: 124651
47+
.. nonce: bLBGtH
48+
.. section: Library
49+
50+
Properly quote template strings in :mod:`venv` activation scripts.
51+
52+
..
53+
54+
.. date: 2023-04-26-09-54-25
55+
.. gh-issue: 103848
56+
.. nonce: aDSnpR
57+
.. section: Library
58+
59+
Add checks to ensure that ``[`` bracketed ``]`` hosts found by
60+
:func:`urllib.parse.urlsplit` are of IPv6 or IPvFuture format.

Misc/NEWS.d/next/Library/2023-04-26-09-54-25.gh-issue-103848.aDSnpR.rst

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

Misc/NEWS.d/next/Library/2024-09-28-02-03-04.gh-issue-124651.bLBGtH.rst

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

Misc/NEWS.d/next/Security/2024-08-07-10-42-13.gh-issue-122792.oiTMo9.rst

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

Misc/NEWS.d/next/Security/2024-11-13-11-09-12.gh-issue-126623.TO7NnR.rst

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

Misc/NEWS.d/next/Tests/2023-09-14-22-58-47.gh-issue-109396.J1a4jR.rst

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

Misc/NEWS.d/next/Tests/2024-10-07-14-13-38.gh-issue-125041.PKLWDf.rst

Lines changed: 0 additions & 3 deletions
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.10.15
1+
This is Python version 3.10.16
22
==============================
33

44
.. image:: https://travis-ci.com/python/cpython.svg?branch=master

0 commit comments

Comments
 (0)
0