Skip to content

Commit 4893861

Browse files
committed
3.6.7rc2
1 parent f55c3ae commit 4893861

18 files changed

+144
-29
lines changed

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
#define PY_MINOR_VERSION 6
2121
#define PY_MICRO_VERSION 7
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23-
#define PY_RELEASE_SERIAL 1
23+
#define PY_RELEASE_SERIAL 2
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.6.7rc1+"
26+
#define PY_VERSION "3.6.7rc2"
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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Wed Sep 26 02:28:16 2018
2+
# Autogenerated by Sphinx on Sat Oct 13 02:42:51 2018
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -5320,7 +5320,8 @@
53205320
' 3232235521\n'
53215321
' >>>\n'
53225322
' >>> width = 5\n'
5323-
' >>> for num in range(5,12): \n'
5323+
' >>> for num in range(5,12): #doctest: '
5324+
'+NORMALIZE_WHITESPACE\n'
53245325
" ... for base in 'dXob':\n"
53255326
" ... print('{0:{width}{base}}'.format(num, "
53265327
"base=base, width=width), end=' ')\n"

Misc/NEWS.d/3.6.7rc2.rst

Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
.. bpo: 34879
2+
.. date: 2018-10-02-22-55-11
3+
.. nonce: 7VNH2a
4+
.. release date: 2018-10-13
5+
.. section: Core and Builtins
6+
7+
Fix a possible null pointer dereference in bytesobject.c. Patch by Zackery
8+
Spytz.
9+
10+
..
11+
12+
.. bpo: 34320
13+
.. date: 2018-08-02-22-34-59
14+
.. nonce: hNshAA
15+
.. section: Core and Builtins
16+
17+
Fix ``dict(od)`` didn't copy iteration order of OrderedDict.
18+
19+
..
20+
21+
.. bpo: 34769
22+
.. date: 2018-10-09-11-01-16
23+
.. nonce: cSkkZt
24+
.. section: Library
25+
26+
Fix for async generators not finalizing when event loop is in debug mode and
27+
garbage collector runs in another thread.
28+
29+
..
30+
31+
.. bpo: 34922
32+
.. date: 2018-10-07-21-18-52
33+
.. nonce: 37IdsA
34+
.. section: Library
35+
36+
Fixed integer overflow in the :meth:`~hashlib.shake.digest()` and
37+
:meth:`~hashlib.shake.hexdigest()` methods for the SHAKE algorithm in the
38+
:mod:`hashlib` module.
39+
40+
..
41+
42+
.. bpo: 34871
43+
.. date: 2018-10-04-18-46-54
44+
.. nonce: t3X-dB
45+
.. section: Library
46+
47+
Fix inspect module polluted ``sys.modules`` when parsing
48+
``__text_signature__`` of callable.
49+
50+
..
51+
52+
.. bpo: 34872
53+
.. date: 2018-10-02-19-36-34
54+
.. nonce: yWZRhI
55+
.. section: Library
56+
57+
Fix self-cancellation in C implementation of asyncio.Task
58+
59+
..
60+
61+
.. bpo: 34819
62+
.. date: 2018-09-27-09-45-00
63+
.. nonce: 9ZaFyO
64+
.. section: Library
65+
66+
Use a monotonic clock to compute timeouts in :meth:`Executor.map` and
67+
:func:`as_completed`, in order to prevent timeouts from deviating when the
68+
system clock is adjusted.
69+
70+
..
71+
72+
.. bpo: 34282
73+
.. date: 2018-09-02-13-33-35
74+
.. nonce: ztyXH8
75+
.. section: Library
76+
77+
Fix enum members getting shadowed by parent attributes.
78+
79+
..
80+
81+
.. bpo: 34172
82+
.. date: 2018-07-26-10-31-52
83+
.. nonce: 8ovLNi
84+
.. section: Library
85+
86+
Fix a reference issue inside multiprocessing.Pool that caused the pool to
87+
remain alive if it was deleted without being closed or terminated
88+
explicitly.
89+
90+
..
91+
92+
.. bpo: 33729
93+
.. date: 2018-07-20-09-11-05
94+
.. nonce: sO6iTb
95+
.. section: Library
96+
97+
Fixed issues with arguments parsing in :mod:`hashlib`.
98+
99+
..
100+
101+
.. bpo: 32174
102+
.. date: 2018-10-08-19-15-28
103+
.. nonce: YO9CYm
104+
.. section: Documentation
105+
106+
chm document displays non-ASCII charaters properly on some MBCS Windows
107+
systems.
108+
109+
..
110+
111+
.. bpo: 32962
112+
.. date: 2018-05-10-16-59-15
113+
.. nonce: S-rcIN
114+
.. section: Tests
115+
116+
Fixed test_gdb when Python is compiled with flags -mcet -fcf-protection -O0.
117+
118+
..
119+
120+
.. bpo: 34370
121+
.. date: 2018-10-13-02-07-55
122+
.. nonce: FqUqcG
123+
.. section: macOS
124+
125+
Revert to using the released Tk 8.6.8 with macOS installers instead of the
126+
Tk 8.6.x development snapshot used with 3.7.1rc1 and 3.6.7rc1. The snapshot
127+
introduced at least one significant regression (bpo-34927).
128+
129+
..
130+
131+
.. bpo: 34910
132+
.. date: 2018-10-05-17-06-49
133+
.. nonce: tSFrls
134+
.. section: C API
135+
136+
Ensure that :c:func:`PyObject_Print` always returns ``-1`` on error. Patch
137+
by Zackery Spytz.

Misc/NEWS.d/next/C API/2018-10-05-17-06-49.bpo-34910.tSFrls.rst

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

Misc/NEWS.d/next/Core and Builtins/2018-08-02-22-34-59.bpo-34320.hNshAA.rst

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

Misc/NEWS.d/next/Core and Builtins/2018-10-02-22-55-11.bpo-34879.7VNH2a.rst

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

Misc/NEWS.d/next/Documentation/2018-10-08-19-15-28.bpo-32174.YO9CYm.rst

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

Misc/NEWS.d/next/Library/2018-07-20-09-11-05.bpo-33729.sO6iTb.rst

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

Misc/NEWS.d/next/Library/2018-07-26-10-31-52.bpo-34172.8ovLNi.rst

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

Misc/NEWS.d/next/Library/2018-09-02-13-33-35.bpo-34282.ztyXH8.rst

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

Misc/NEWS.d/next/Library/2018-09-27-09-45-00.bpo-34819.9ZaFyO.rst

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

Misc/NEWS.d/next/Library/2018-10-02-19-36-34.bpo-34872.yWZRhI.rst

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

Misc/NEWS.d/next/Library/2018-10-04-18-46-54.bpo-34871.t3X-dB.rst

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

Misc/NEWS.d/next/Library/2018-10-07-21-18-52.bpo-34922.37IdsA.rst

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

Misc/NEWS.d/next/Library/2018-10-09-11-01-16.bpo-34769.cSkkZt.rst

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

Misc/NEWS.d/next/Tests/2018-05-10-16-59-15.bpo-32962.S-rcIN.rst

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

Misc/NEWS.d/next/macOS/2018-10-13-02-07-55.bpo-34370.FqUqcG.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.7rc1+
2-
================================
1+
This is Python version 3.6.7 candidate 2
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)