Skip to content

Commit 6e02691

Browse files
committed
Python 3.9.0a4
1 parent eb8ac57 commit 6e02691

File tree

98 files changed

+967
-195
lines changed

Some content is hidden

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

98 files changed

+967
-195
lines changed

Include/patchlevel.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
#define PY_MINOR_VERSION 9
2121
#define PY_MICRO_VERSION 0
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
23-
#define PY_RELEASE_SERIAL 3
23+
#define PY_RELEASE_SERIAL 4
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.9.0a3+"
26+
#define PY_VERSION "3.9.0a4"
2727
/*--end constants--*/
2828

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

Lib/pydoc_data/topics.py

+15-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Fri Jan 24 22:03:37 2020
2+
# Autogenerated by Sphinx on Tue Feb 25 13:20:31 2020
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -5291,9 +5291,12 @@
52915291
'Changed in version 3.6: Added the "\'_\'" option (see also '
52925292
'**PEP 515**).\n'
52935293
'\n'
5294-
'*width* is a decimal integer defining the minimum field '
5295-
'width. If not\n'
5296-
'specified, then the field width will be determined by the '
5294+
'*width* is a decimal integer defining the minimum total '
5295+
'field width,\n'
5296+
'including any prefixes, separators, and other formatting '
5297+
'characters.\n'
5298+
'If not specified, then the field width will be determined '
5299+
'by the\n'
52975300
'content.\n'
52985301
'\n'
52995302
'When no explicit alignment is given, preceding the *width* '
@@ -9005,11 +9008,17 @@
90059008
'bases,\n'
90069009
'**kwds)" (where the additional keyword arguments, if any, '
90079010
'come from\n'
9008-
'the class definition).\n'
9011+
'the class definition). The "__prepare__" method should be '
9012+
'implemented\n'
9013+
'as a "classmethod()". The namespace returned by '
9014+
'"__prepare__" is\n'
9015+
'passed in to "__new__", but when the final class object is '
9016+
'created the\n'
9017+
'namespace is copied into a new "dict".\n'
90099018
'\n'
90109019
'If the metaclass has no "__prepare__" attribute, then the '
90119020
'class\n'
9012-
'namespace is initialised as an empty ordered mapping.\n'
9021+
'namespace is initialised as an empty "dict()".\n'
90139022
'\n'
90149023
'See also:\n'
90159024
'\n'

0 commit comments

Comments
 (0)