Skip to content

Commit aa73e17

Browse files
committed
3.6.13
1 parent 5c17dfc commit aa73e17

13 files changed

+95
-23
lines changed

Include/patchlevel.h

+2-2
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 6
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.6.12+"
26+
#define PY_VERSION "3.6.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Sat Aug 15 02:33:47 2020
2+
# Autogenerated by Sphinx on Mon Feb 15 20:10:09 2021
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'

Misc/NEWS.d/3.6.13.rst

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
.. bpo: 42967
2+
.. date: 2021-02-14-15-59-16
3+
.. nonce: YApqDS
4+
.. release date: 2021-02-15
5+
.. section: Security
6+
7+
Fix web cache poisoning vulnerability by defaulting the query args separator
8+
to ``&``, and allowing the user to choose a custom separator.
9+
10+
..
11+
12+
.. bpo: 42938
13+
.. date: 2021-01-18-09-27-31
14+
.. nonce: 4Zn4Mp
15+
.. section: Security
16+
17+
Avoid static buffers when computing the repr of :class:`ctypes.c_double` and
18+
:class:`ctypes.c_longdouble` values.
19+
20+
..
21+
22+
.. bpo: 42103
23+
.. date: 2020-10-23-19-19-30
24+
.. nonce: cILT66
25+
.. section: Security
26+
27+
Prevented potential DoS attack via CPU and RAM exhaustion when processing
28+
malformed Apple Property List files in binary format.
29+
30+
..
31+
32+
.. bpo: 42051
33+
.. date: 2020-10-19-10-56-27
34+
.. nonce: EU_B7u
35+
.. section: Security
36+
37+
The :mod:`plistlib` module no longer accepts entity declarations in XML
38+
plist files to avoid XML vulnerabilities. This should not affect users as
39+
entity declarations are not used in regular plist files.
40+
41+
..
42+
43+
.. bpo: 40791
44+
.. date: 2020-05-28-06-06-47
45+
.. nonce: QGZClX
46+
.. section: Security
47+
48+
Add ``volatile`` to the accumulator variable in ``hmac.compare_digest``,
49+
making constant-time-defeating optimizations less likely.
50+
51+
..
52+
53+
.. bpo: 35560
54+
.. date: 2018-12-22-22-19-51
55+
.. nonce: 9vMWSP
56+
.. section: Core and Builtins
57+
58+
Fix an assertion error in :func:`format` in debug build for floating point
59+
formatting with "n" format, zero padding and small width. Release build is
60+
not impacted. Patch by Karthikeyan Singaravelan.
61+
62+
..
63+
64+
.. bpo: 42103
65+
.. date: 2020-10-23-19-20-14
66+
.. nonce: C5obK2
67+
.. section: Library
68+
69+
:exc:`~plistlib.InvalidFileException` and :exc:`RecursionError` are now the
70+
only errors caused by loading malformed binary Plist file (previously
71+
ValueError and TypeError could be raised in some specific cases).
72+
73+
..
74+
75+
.. bpo: 42794
76+
.. date: 2021-01-01-08-52-36
77+
.. nonce: -7-XGz
78+
.. section: Tests
79+
80+
Update test_nntplib to use offical group name of news.aioe.org for testing.
81+
Patch by Dong-hee Na.
82+
83+
..
84+
85+
.. bpo: 41944
86+
.. date: 2020-10-05-17-43-46
87+
.. nonce: rf1dYb
88+
.. section: Tests
89+
90+
Tests for CJK codecs no longer call ``eval()`` on content received via HTTP.

Misc/NEWS.d/next/Core and Builtins/2018-12-22-22-19-51.bpo-35560.9vMWSP.rst

-3
This file was deleted.

Misc/NEWS.d/next/Library/2020-10-23-19-20-14.bpo-42103.C5obK2.rst

-3
This file was deleted.

Misc/NEWS.d/next/Security/2020-05-28-06-06-47.bpo-40791.QGZClX.rst

-1
This file was deleted.

Misc/NEWS.d/next/Security/2020-10-19-10-56-27.bpo-42051.EU_B7u.rst

-3
This file was deleted.

Misc/NEWS.d/next/Security/2020-10-23-19-19-30.bpo-42103.cILT66.rst

-2
This file was deleted.

Misc/NEWS.d/next/Security/2021-01-18-09-27-31.bpo-42938.4Zn4Mp.rst

-2
This file was deleted.

Misc/NEWS.d/next/Security/2021-02-14-15-59-16.bpo-42967.YApqDS.rst

-1
This file was deleted.

Misc/NEWS.d/next/Tests/2020-10-05-17-43-46.bpo-41944.rf1dYb.rst

-1
This file was deleted.

Misc/NEWS.d/next/Tests/2021-01-01-08-52-36.bpo-42794.-7-XGz.rst

-2
This file was deleted.

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
This is Python version 3.6.12+
2-
==============================
1+
This is Python version 3.6.13
2+
=============================
33

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

0 commit comments

Comments
 (0)