Skip to content

Commit ff69423

Browse files
committed
Merge tag 'v3.6.4rc1' into 3.6
2 parents 7a6f28f + 3398dcb commit ff69423

File tree

114 files changed

+1153
-294
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+1153
-294
lines changed

Include/patchlevel.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
/*--start constants--*/
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 6
21-
#define PY_MICRO_VERSION 3
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
23-
#define PY_RELEASE_SERIAL 0
21+
#define PY_MICRO_VERSION 4
22+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23+
#define PY_RELEASE_SERIAL 1
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.6.3+"
26+
#define PY_VERSION "3.6.4rc1"
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: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Mon Sep 18 23:00:11 2017
2+
# Autogenerated by Sphinx on Tue Dec 5 03:11:02 2017
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -2674,7 +2674,6 @@
26742674
' mgr = (EXPR)\n'
26752675
' aexit = type(mgr).__aexit__\n'
26762676
' aenter = type(mgr).__aenter__(mgr)\n'
2677-
' exc = True\n'
26782677
'\n'
26792678
' VAR = await aenter\n'
26802679
' try:\n'
@@ -4503,12 +4502,6 @@
45034502
' 3.14 10. .001 1e100 3.14e-10 0e0 '
45044503
'3.14_15_93\n'
45054504
'\n'
4506-
'Note that numeric literals do not include a sign; a phrase like '
4507-
'"-1"\n'
4508-
'is actually an expression composed of the unary operator "-" and '
4509-
'the\n'
4510-
'literal "1".\n'
4511-
'\n'
45124505
'Changed in version 3.6: Underscores are now allowed for '
45134506
'grouping\n'
45144507
'purposes in literals.\n',
@@ -5497,7 +5490,7 @@
54975490
'\n'
54985491
'**CPython implementation detail:** The current implementation does '
54995492
'not\n'
5500-
'enforce some of these restriction, but programs should not abuse '
5493+
'enforce some of these restrictions, but programs should not abuse '
55015494
'this\n'
55025495
'freedom, as future implementations may enforce them or silently '
55035496
'change\n'
@@ -6744,7 +6737,9 @@
67446737
'Addition and subtraction |\n'
67456738
'+-------------------------------------------------+---------------------------------------+\n'
67466739
'| "*", "@", "/", "//", "%" | '
6747-
'Multiplication, matrix multiplication |\n'
6740+
'Multiplication, matrix |\n'
6741+
'| | '
6742+
'multiplication, division, floor |\n'
67486743
'| | '
67496744
'division, remainder [5] |\n'
67506745
'+-------------------------------------------------+---------------------------------------+\n'
@@ -10102,11 +10097,6 @@
1010210097
'or\n'
1010310098
'greater must be expressed with escapes.\n'
1010410099
'\n'
10105-
'As of Python 3.3 it is possible again to prefix string literals '
10106-
'with a\n'
10107-
'"u" prefix to simplify maintenance of dual 2.x and 3.x '
10108-
'codebases.\n'
10109-
'\n'
1011010100
'Both string and bytes literals may optionally be prefixed with a\n'
1011110101
'letter "\'r\'" or "\'R\'"; such strings are called *raw strings* '
1011210102
'and treat\n'

0 commit comments

Comments
 (0)