Skip to content

Commit 93b7677

Browse files
committed
3.7.7rc1
1 parent 12c45ef commit 93b7677

70 files changed

Lines changed: 696 additions & 151 deletions

File tree

Some content is hidden

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

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 7
21-
#define PY_MICRO_VERSION 6
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
23-
#define PY_RELEASE_SERIAL 0
21+
#define PY_MICRO_VERSION 7
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.7.6+"
26+
#define PY_VERSION "3.7.7rc1"
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: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Wed Dec 18 13:43:31 2019
2+
# Autogenerated by Sphinx on Wed Mar 4 02:29:35 2020
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -5070,11 +5070,11 @@
50705070
'only\n'
50715071
'supported by the numeric types.\n'
50725072
'\n'
5073-
'A general convention is that an empty format string ("""") '
5073+
'A general convention is that an empty format specification '
50745074
'produces\n'
50755075
'the same result as if you had called "str()" on the value. '
50765076
'A non-empty\n'
5077-
'format string typically modifies the result.\n'
5077+
'format specification typically modifies the result.\n'
50785078
'\n'
50795079
'The general form of a *standard format specifier* is:\n'
50805080
'\n'
@@ -5227,9 +5227,12 @@
52275227
'Changed in version 3.6: Added the "\'_\'" option (see also '
52285228
'**PEP 515**).\n'
52295229
'\n'
5230-
'*width* is a decimal integer defining the minimum field '
5231-
'width. If not\n'
5232-
'specified, then the field width will be determined by the '
5230+
'*width* is a decimal integer defining the minimum total '
5231+
'field width,\n'
5232+
'including any prefixes, separators, and other formatting '
5233+
'characters.\n'
5234+
'If not specified, then the field width will be determined '
5235+
'by the\n'
52335236
'content.\n'
52345237
'\n'
52355238
'When no explicit alignment is given, preceding the *width* '
@@ -6771,7 +6774,7 @@
67716774
'object.__rfloordiv__(self, other)\n'
67726775
'object.__rmod__(self, other)\n'
67736776
'object.__rdivmod__(self, other)\n'
6774-
'object.__rpow__(self, other)\n'
6777+
'object.__rpow__(self, other[, modulo])\n'
67756778
'object.__rlshift__(self, other)\n'
67766779
'object.__rrshift__(self, other)\n'
67776780
'object.__rand__(self, other)\n'
@@ -8907,11 +8910,17 @@
89078910
'bases,\n'
89088911
'**kwds)" (where the additional keyword arguments, if any, '
89098912
'come from\n'
8910-
'the class definition).\n'
8913+
'the class definition). The "__prepare__" method should be '
8914+
'implemented\n'
8915+
'as a "classmethod()". The namespace returned by '
8916+
'"__prepare__" is\n'
8917+
'passed in to "__new__", but when the final class object is '
8918+
'created the\n'
8919+
'namespace is copied into a new "dict".\n'
89118920
'\n'
89128921
'If the metaclass has no "__prepare__" attribute, then the '
89138922
'class\n'
8914-
'namespace is initialised as an empty ordered mapping.\n'
8923+
'namespace is initialised as an empty "dict()".\n'
89158924
'\n'
89168925
'See also:\n'
89178926
'\n'
@@ -9421,7 +9430,7 @@
94219430
'object.__rfloordiv__(self, other)\n'
94229431
'object.__rmod__(self, other)\n'
94239432
'object.__rdivmod__(self, other)\n'
9424-
'object.__rpow__(self, other)\n'
9433+
'object.__rpow__(self, other[, modulo])\n'
94259434
'object.__rlshift__(self, other)\n'
94269435
'object.__rrshift__(self, other)\n'
94279436
'object.__rand__(self, other)\n'
@@ -11847,10 +11856,9 @@
1184711856
' "co_lnotab" is a string encoding the mapping from bytecode\n'
1184811857
' offsets to line numbers (for details see the source code of '
1184911858
'the\n'
11850-
' interpreter); "co_stacksize" is the required stack size\n'
11851-
' (including local variables); "co_flags" is an integer '
11852-
'encoding a\n'
11853-
' number of flags for the interpreter.\n'
11859+
' interpreter); "co_stacksize" is the required stack size;\n'
11860+
' "co_flags" is an integer encoding a number of flags for the\n'
11861+
' interpreter.\n'
1185411862
'\n'
1185511863
' The following flag bits are defined for "co_flags": bit '
1185611864
'"0x04"\n'

0 commit comments

Comments
 (0)