8000 3.7.13 · wrongnull/cpython@000593c · GitHub
[go: up one dir, main page]

Skip to content

Commit 000593c

Browse files
committed
3.7.13
1 parent 4a1d65f commit 000593c

13 files changed

+92
-21
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 7
21-
#define PY_MICRO_VERSION 12
21+
#define PY_MICRO_VERSION 13
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.7.12+"
26+
#define PY_VERSION "3.7.13"
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 Fri Sep 3 23:33:01 2021
2+
# Autogenerated by Sphinx on Wed Mar 16 09:24:05 2022
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'

Misc/NEWS.d/3.7.13.rst

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
.. bpo: 46985
2+
.. date: 2022-03-11-13-34-16
3+
.. nonce: BgoMr2
4+
.. release date: 2022-03-16
5+
.. section: Library
6+
7+
Upgrade pip wheel bundled with ensurepip (pip 22.0.4)
8+
9+
..
10+
11+
.. bpo: 46932
12+
.. date: 2022-03-07-20-20-34
13+
.. nonce: xbarAs
14+
.. section: Library
15+
16+
Update bundled libexpat to 2.4.7
17+
18+
..
19+
20+
.. bpo: 46811
21+
.. date: 2022-02-20-21-03-31
22+
.. nonce: 8BxgdQ
23+
.. section: Library
24+
25+
Make test suite support Expat >=2.4.5
26+
27+
..
28+
29+
.. bpo: 46784
30+
.. date: 2022-02-18-22-10-30
31+
.. nonce: SVOQJx
32+
.. section: Library
33+
34+
Fix libexpat symbols collisions with user dynamically loaded or statically
35+
linked libexpat in embedded Python.
36+
37+
..
38+
39+
.. bpo: 46756
40+
.. date: 2022-02-15-11-57-53
41+
.. nonce: AigSPi
42+
.. section: Library
43+
44+
Fix a bug in :meth:`urllib.request.HTTPPasswordMgr.find_user_password` and
45+
:meth:`urllib.request.HTTPPasswordMgrWithPriorAuth.is_authenticated` which
46+
allowed to bypass authorization. For example, access to URI
47+
``example.org/foobar`` was allowed if the user was authorized for URI
48+
``example.org/foo``.
49+
50+
..
51+
52+
.. bpo: 47024
53+
.. date: 2022-03-15-11-53-10
54+
.. nonce: p3PjRy
55+
.. section: Build
56+
57+
Update Windows builds and macOS installer build to use OpenSSL 1.1.1n.
58+
59+
..
60+
61+
.. bpo: 45405
62+
.. date: 2021-10-11-16-27-38
63+
.. nonce: iSfdW5
64+
.. section: Build
65+
66+
Prevent ``internal configure error`` when running ``configure`` with recent
67+
versions of clang. Patch by David Bohman.
68+
69+
..
70+
71+
.. bpo: 44549
72+
.. date: 2022-03-07-17-46-40
73+
.. nonce: SPrGS9
74+
.. section: Windows
75+
76+
Update bzip2 to 1.0.8 in Windows builds to mitigate CVE-2016-3189 and
77+
CVE-2019-12900
78+
79+
..
80+
81+
.. bpo: 46948
82+
.. date: 2022-03-07-16-34-11
83+
.. nonce: Ufd4tG
84+
.. section: Windows
85+
86+
Prevent CVE-2022-26488 by ensuring the Add to PATH option in the Windows
87+
installer uses the correct path when being repaired.

Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst

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

Misc/NEWS.d/next/Build/2022-03-15-11-53-10.bpo-47024.p3PjRy.rst

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

Misc/NEWS.d/next/Library/2022-02-15-11-57-53.bpo-46756.AigSPi.rst

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

Misc/NEWS.d/next/Library/2022-02-18-22-10-30.bpo-46784.SVOQJx.rst

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

Misc/NEWS.d/next/Library/2022-02-20-21-03-31.bpo-46811.8BxgdQ.rst

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

Misc/NEWS.d/next/Library/2022-03-07-20-20-34.bpo-46932.xbarAs.rst

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

Misc/NEWS.d/next/Library/2022-03-11-13-34-16.bpo-46985.BgoMr2.rst

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

Misc/NEWS.d/next/Windows/2022-03-07-16-34-11.bpo-46948.Ufd4tG.rst

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

Misc/NEWS.d/next/Windows/2022-03-07-17-46-40.bpo-44549.SPrGS9.rst

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

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
This is Python version 3.7.12+
2-
==============================
1+
This is Python version 3.7.13
2+
=============================
33

44
.. image:: https://travis-ci.org/python/cpython.svg?branch=3.7
55
:alt: CPython build status on Travis CI

0 commit comments

Comments
 (0)
0