Skip to content

Commit 1688e64

Browse files
committed
Bump to 3.6.2rc1 development.
1 parent 69c0db5 commit 1688e64

File tree

2 files changed

+51
-1
lines changed

2 files changed

+51
-1
lines changed

Include/patchlevel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.6.1"
26+
#define PY_VERSION "3.6.1+"
2727
/*--end constants--*/
2828

2929
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

Misc/NEWS

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,56 @@
22
Python News
33
+++++++++++
44

5+
What's New in Python 3.6.2 release candidate 1?
6+
===============================================
7+
8+
*Release date: XXXX-XX-XX*
9+
10+
Core and Builtins
11+
-----------------
12+
13+
- bpo-29859: Show correct error messages when any of the pthread_* calls in
14+
thread_pthread.h fails.
15+
16+
- bpo-28876: ``bool(range)`` works even if ``len(range)``
17+
raises :exc:`OverflowError`.
18+
19+
- bpo-29600: Fix wrapping coroutine return values in StopIteration.
20+
21+
- bpo-28856: Fix an oversight that %b format for bytes should support objects
22+
follow the buffer protocol.
23+
24+
- bpo-29714: Fix a regression that bytes format may fail when containing zero
25+
bytes inside.
26+
27+
Library
28+
-------
29+
30+
- bpo-25455: Fixed crashes in repr of recursive buffered file-like objects.
31+
32+
- bpo-29800: Fix crashes in partial.__repr__ if the keys of partial.keywords
33+
are not strings. Patch by Michael Seifert.
34+
35+
- bpo-29742: get_extra_info() raises exception if get called on closed ssl transport.
36+
Patch by Nikolay Kim.
37+
38+
- bpo-8256: Fixed possible failing or crashing input() if attributes "encoding"
39+
or "errors" of sys.stdin or sys.stdout are not set or are not strings.
40+
41+
- bpo-28298: Fix a bug that prevented array 'Q', 'L' and 'I' from accepting big
42+
intables (objects that have __int__) as elements. Patch by Oren Milman.
43+
44+
- bpo-28231: The zipfile module now accepts path-like objects for external
45+
paths.
46+
47+
- bpo-26915: index() and count() methods of collections.abc.Sequence now
48+
check identity before checking equality when do comparisons.
49+
50+
- bpo-29615: SimpleXMLRPCDispatcher no longer chains KeyError (or any other
51+
exception) to exception(s) raised in the dispatched methods.
52+
Patch by Petr Motejlek.
53+
54+
555
What's New in Python 3.6.1?
656
===========================
757

0 commit comments

Comments
 (0)