Skip to content

Commit 03e0df6

Browse files
committed
Update for post-3.6.2rc2
1 parent b79d58e commit 03e0df6

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
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 2
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.2rc1+"
26+
#define PY_VERSION "3.6.2rc2+"
2727
/*--end constants--*/
2828

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

Misc/NEWS

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,21 @@ Library
2121
- bpo-30746: Prohibited the '=' character in environment variable names in
2222
``os.putenv()`` and ``os.spawn*()``.
2323

24+
- bpo-29755: Fixed the lgettext() family of functions in the gettext module.
25+
They now always return bytes.
26+
27+
28+
What's New in Python 3.6.2 release candidate 2?
29+
===============================================
30+
31+
*Release date: 2017-07-07*
32+
33+
Core and Builtins
34+
-----------------
35+
36+
Library
37+
-------
38+
2439
- [Security] bpo-30730: Prevent environment variables injection in subprocess on
2540
Windows. Prevent passing other environment variables and command arguments.
2641

@@ -33,9 +48,6 @@ Library
3348
doesn't impact Python, since Python already gets entropy from the OS to set
3449
the expat secret using ``XML_SetHashSalt()``.
3550

36-
- bpo-29755: Fixed the lgettext() family of functions in the gettext module.
37-
They now always return bytes.
38-
3951
- [Security] bpo-30500: Fix urllib.parse.splithost() to correctly parse
4052
fragments. For example, ``splithost('//127.0.0.1#@evil.com/')`` now
4153
correctly returns the ``127.0.0.1`` host, instead of treating ``@evil.com``

0 commit comments

Comments
 (0)