File tree Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 20
20
#define PY_MINOR_VERSION 6
21
21
#define PY_MICRO_VERSION 2
22
22
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23
- #define PY_RELEASE_SERIAL 1
23
+ #define PY_RELEASE_SERIAL 2
24
24
25
25
/* Version as a string */
26
- #define PY_VERSION "3.6.2rc1 +"
26
+ #define PY_VERSION "3.6.2rc2 +"
27
27
/*--end constants--*/
28
28
29
29
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
Original file line number Diff line number Diff line change @@ -21,6 +21,21 @@ Library
21
21
- bpo-30746: Prohibited the '=' character in environment variable names in
22
22
``os.putenv()`` and ``os.spawn*()``.
23
23
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
+
24
39
- [Security] bpo-30730: Prevent environment variables injection in subprocess on
25
40
Windows. Prevent passing other environment variables and command arguments.
26
41
@@ -33,9 +48,6 @@ Library
33
48
doesn't impact Python, since Python already gets entropy from the OS to set
34
49
the expat secret using ``XML_SetHashSalt()``.
35
50
36
- - bpo-29755: Fixed the lgettext() family of functions in the gettext module.
37
- They now always return bytes.
38
-
39
51
- [Security] bpo-30500: Fix urllib.parse.splithost() to correctly parse
40
52
fragments. For example, ``splithost('//127.0.0.1#@evil.com/')`` now
41
53
correctly returns the ``127.0.0.1`` host, instead of treating ``@evil.com``
You can’t perform that action at this time.
0 commit comments