Skip to content

Commit 260ec2c

Browse files
committed
3.7.1final
1 parent 32fe7b0 commit 260ec2c

File tree

8 files changed

+34
-14
lines changed

8 files changed

+34
-14
lines changed

Include/patchlevel.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 7
2121
#define PY_MICRO_VERSION 1
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23-
#define PY_RELEASE_SERIAL 2
22+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
23+
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.7.1rc2"
26+
#define PY_VERSION "3.7.1"
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: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Sat Oct 13 02:40:00 2018
2+
# Autogenerated by Sphinx on Sat Oct 20 01:59:27 2018
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -5526,8 +5526,7 @@
55265526
' 3232235521\n'
55275527
' >>>\n'
55285528
' >>> width = 5\n'
5529-
' >>> for num in range(5,12): #doctest: '
5530-
'+NORMALIZE_WHITESPACE\n'
5529+
' >>> for num in range(5,12): \n'
55315530
" ... for base in 'dXob':\n"
55325531
" ... print('{0:{width}{base}}'.format(num, "
55335532
"base=base, width=width), end=' ')\n"

Misc/NEWS.d/3.7.1.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.. bpo: 34970
2+
.. date: 2018-10-13-11-14-13
3+
.. nonce: SrJTY7
4+
.. release date: 2018-10-20
5+
.. section: Library
6+
7+
Protect tasks weak set manipulation in ``asyncio.all_tasks()``

Misc/NEWS.d/3.7.1rc2.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,15 @@ Fixed integer overflow in the :meth:`~hashlib.shake.digest()` and
4949

5050
..
5151
52+
.. bpo: 34909
53+
.. date: 2018-10-20-00-35-19
54+
.. nonce: Ew_8DC
55+
.. section: Library
56+
57+
Enum: fix grandchildren subclassing when parent mixed with concrete data
58+
types.
59+
60+
..
5261
.. bpo: 34900
5362
.. date: 2018-10-05-05-55-53
5463
.. nonce: 8RNiFu
@@ -89,6 +98,17 @@ system clock is adjusted.
8998

9099
..
91100
101+
.. bpo: 34521
102+
.. date: 2018-10-13-19-15-23
103+
.. nonce: YPaiTK
104+
.. section: Library
105+
106+
Use :func:`socket.CMSG_SPACE` to calculate ancillary data size instead of
107+
:func:`socket.CMSG_LEN` in :func:`multiprocessing.reduction.recvfds` as
108+
:rfc:`3542` requires the use of the former for portable applications.
109+
110+
..
111+
92112
.. bpo: 34334
93113
.. date: 2018-09-25-08-42-34
94114
.. nonce: rSPBW9

Misc/NEWS.d/next/Library/2018-10-13-11-14-13.bpo-34970.SrJTY7.rst

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

Misc/NEWS.d/next/Library/2018-10-13-19-15-23.bpo-34521.YPaiTK.rst

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

Misc/NEWS.d/next/Library/2018-10-20-00-35-19.bpo-34909.Ew_8DC.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.1 candidate 2
2-
========================================
1+
This is Python version 3.7.1
2+
============================
33

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

0 commit comments

Comments
 (0)