8000 3.6.15 · python/cpython@b74b1f3 · GitHub
[go: up one dir, main page]

Skip to content

Commit b74b1f3

Browse files
committed
3.6.15
1 parent 910886a commit b74b1f3

8 files changed

+46
-15
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 6
21-
#define PY_MICRO_VERSION 14
21+
#define PY_MICRO_VERSION 15
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.14+"
26+
#define PY_VERSION "3.6.15"
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 Mon Jun 28 12:38:05 2021
2+
# Autogenerated by Sphinx on Fri Sep 3 23:33:12 2021
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'

Misc/NEWS.d/3.6.15.rst

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
.. bpo: 44394
2+
.. date: 2021-06-29-02-45-53
3+
.. nonce: A220N1
4+
.. release date: 2021-09-03
5+
.. section: Security
6+
7+
Update the vendored copy of libexpat to 2.4.1 (from 2.2.8) to get the fix
8+
for the CVE-2013-0340 "Billion Laughs" vulnerability. This copy is most used
9+
on Windows and macOS.
10+
11+
..
12+
13+
.. bpo: 43124
14+
.. date: 2021-05-08-11-50-46
15+
.. nonce: 2CTM6M
16+
.. section: Security
17+
18+
Made the internal ``putcmd`` function in :mod:`smtplib` sanitize input for
19+
presence of ``\r`` and ``\n`` characters to avoid (unlikely) command
20+
injection.
21+
22+
..
23+
24+
.. bpo: 45001
25+
.. date: 2021-08-26-16-25-48
26+
.. nonce: tn_dKp
27+
.. section: Library
28+
29+
Made email date parsing more robust against malformed input, namely a
30+
whitespace-only ``Date:`` header. Patch by Wouter Bolsterlee.
31+
32+
..
33+
34+
.. bpo: 38965
35+
.. date: 2019-12-04-17-08-55
36+
.. nonce: yqax3m
37+
.. section: Tests
38+
39+
Fix test_faulthandler on GCC 10. Use the "volatile" keyword in
40+
``faulthandler._stack_overflow()`` to prevent tail call optimization on any
41+
compiler, rather than relying on compiler specific pragma.

Misc/NEWS.d/next/Library/2021-08-26-16-25-48.bpo-45001.tn_dKp.rst

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

Misc/NEWS.d/next/Security/2021-05-08-11-50-46.bpo-43124.2CTM6M.rst

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

Misc/NEWS.d/next/Security/2021-06-29-02-45-53.bpo-44394.A220N1.rst

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

Misc/NEWS.d/next/Tests/2019-12-04-17-08-55.bpo-38965.yqax3m.rst

Lines changed: 0 additions & 3 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.6.14+
2-
==============================
1+
This is Python version 3.6.15
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)
0