Skip to content

Commit f93b994

Browse files
committed
Merge branch '3.6.1' of github.com:ned-deily/cpython into 3.6
2 parents 677df6e + 1688e64 commit f93b994

File tree

3 files changed

+31
-15
lines changed

3 files changed

+31
-15
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 1
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23-
#define PY_RELEASE_SERIAL 1
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.1rc1+"
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: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Python News
33
+++++++++++
44

5-
What's New in Python 3.6.1 final?
6-
=================================
5+
What's New in Python 3.6.2 release candidate 1?
6+
===============================================
77

88
*Release date: XXXX-XX-XX*
99

@@ -21,14 +21,6 @@ Core and Builtins
2121
- bpo-28856: Fix an oversight that %b format for bytes should support objects
2222
follow the buffer protocol.
2323

24-
- bpo-29723: The ``sys.path[0]`` initialization change for bpo-29139 caused a
25-
regression by revealing an inconsistency in how sys.path is initialized when
26-
executing ``__main__`` from a zipfile, directory, or other import location.
27-
The interpreter now consistently avoids ever adding the import location's
28-
parent directory to ``sys.path``, and ensures no other ``sys.path`` entries
29-
are inadvertently modified when inserting the import location named on the
30-
command line.
31-
3224
- bpo-29714: Fix a regression that bytes format may fail when containing zero
3325
bytes inside.
3426

@@ -60,6 +52,30 @@ Library
6052
Patch by Petr Motejlek.
6153

6254

55+
What's New in Python 3.6.1?
56+
===========================
57+
58+
*Release date: 2017-03-21*
59+
60+
Core and Builtins
61+
-----------------
62+
63+
- bpo-29723: The ``sys.path[0]`` initialization change for bpo-29139 caused a
64+
regression by revealing an inconsistency in how sys.path is initialized when
65+
executing ``__main__`` from a zipfile, directory, or other import location.
66+
The interpreter now consistently avoids ever adding the import location's
67+
parent directory to ``sys.path``, and ensures no other ``sys.path`` entries
68+
are inadvertently modified when inserting the import location named on the
69+
command line.
70+
71+
Build
72+
-----
73+
74+
- bpo-27593: fix format of git information used in sys.version
75+
76+
- Fix incompatible comment in python.h
77+
78+
6379
What's New in Python 3.6.1 release candidate 1
6480
==============================================
6581

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