Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6ec5cf2

Browse files
committed
3.6.7final
1 parent 92fe93e commit 6ec5cf2

File tree

6 files changed

+27
-11
lines changed

6 files changed

+27
-11
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 6
2121
#define PY_MICRO_VERSION 7
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.6.7rc2"
26+
#define PY_VERSION "3.6.7"
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:42:51 2018
2+
# Autogenerated by Sphinx on Sat Oct 20 01:13:41 2018
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -5320,8 +5320,7 @@
53205320
' 3232235521\n'
53215321
' >>>\n'
53225322
' >>> width = 5\n'
5323-
' >>> for num in range(5,12): #doctest: '
5324-
'+NORMALIZE_WHITESPACE\n'
5323+
' >>> for num in range(5,12): \n'
53255324
" ... for base in 'dXob':\n"
53265325
" ... print('{0:{width}{base}}'.format(num, "
53275326
"base=base, width=width), end=' ')\n"

Misc/NEWS.d/3.6.7.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.. bpo: 0
2+
.. date: 2018-10-20
3+
.. no changes: True
4+
.. nonce: 66tWQH
5+
.. release date: 2018-10-20
6+
.. section: Library
7+
8+
There were no new changes in version 3.6.7.

Misc/NEWS.d/3.6.7rc2.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,18 @@ system clock is adjusted.
6969

7070
..
7171
72+
.. bpo: 34521
73+
.. date: 2018-10-13-19-15-23
74+
.. nonce: YPaiTK
75+
.. release date: 2018-10-20
76+
.. section: Library
77+
78+
Use :func:`socket.CMSG_SPACE` to calculate ancillary data size instead of
79+
:func:`socket.CMSG_LEN` in :func:`multiprocessing.reduction.recvfds` as
80+
:rfc:`3542` requires the use of the former for portable applications.
81+
82+
..
83+
7284
.. bpo: 34282
7385
.. date: 2018-09-02-13-33-35
7486
.. nonce: ztyXH8

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.

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.7 candidate 2
2-
========================================
1+
This is Python version 3.6.7
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)