Skip to content

Commit 53e5529

Browse files
committed
Python 3.10.0a7
1 parent 57f21db commit 53e5529

File tree

92 files changed

+8462
-5465
lines changed

Some content is hidden

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

92 files changed

+8462
-5465
lines changed

Include/patchlevel.h

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

2525
/* Version as a string */
26-
#define PY_VERSION "3.10.0a6+"
26+
#define PY_VERSION "3.10.0a7"
2727
/*--end constants--*/
2828

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

Lib/pydoc_data/topics.py

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Mon Mar 1 16:48:51 2021
2+
# Autogenerated by Sphinx on Mon Apr 5 17:39:41 2021
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -5782,9 +5782,11 @@
57825782
'"Formatter",\n'
57835783
'subclasses can define their own format string syntax). The '
57845784
'syntax is\n'
5785-
'related to that of formatted string literals, but there '
5786-
'are\n'
5787-
'differences.\n'
5785+
'related to that of formatted string literals, but it is '
5786+
'less\n'
5787+
'sophisticated and, in particular, does not support '
5788+
'arbitrary\n'
5789+
'expressions.\n'
57885790
'\n'
57895791
'Format strings contain “replacement fields” surrounded by '
57905792
'curly braces\n'
@@ -5978,7 +5980,7 @@
59785980
'character that can be any character and defaults to a space '
59795981
'if\n'
59805982
'omitted. It is not possible to use a literal curly brace '
5981-
'("{"” or\n'
5983+
'("{"” or\n'
59825984
'“"}"”) as the *fill* character in a formatted string '
59835985
'literal or when\n'
59845986
'using the "str.format()" method. However, it is possible '
@@ -7676,7 +7678,7 @@
76767678
'\n'
76777679
'Note that numeric literals do not include a sign; a phrase like '
76787680
'"-1"\n'
7679-
'is actually an expression composed of the unary operator ‘"-" '
7681+
'is actually an expression composed of the unary operator ‘"-" '
76807682
'and the\n'
76817683
'literal "1".\n',
76827684
'numeric-types': 'Emulating numeric types\n'
@@ -13956,9 +13958,9 @@
1395613958
'| "s + t" | the concatenation of *s* and *t* '
1395713959
'| (6)(7) |\n'
1395813960
'+----------------------------+----------------------------------+------------+\n'
13959-
'| "s * n" or "n * s" | equivalent to *n* copies of the '
13961+
'| "s * n" or "n * s" | equivalent to adding *s* to '
1396013962
'| (2)(7) |\n'
13961-
'| | *s* sequence '
13963+
'| | itself *n* times '
1396213964
'| |\n'
1396313965
'+----------------------------+----------------------------------+------------+\n'
1396413966
'| "s[i]" | *i*th item of *s*, origin 0 '

0 commit comments

Comments
 (0)