Skip to content

Commit b6bd7ff

Browse files
committed
Python 3.12.0a3
1 parent fd38a2f commit b6bd7ff

File tree

84 files changed

+847
-193
lines changed

Some content is hidden

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

84 files changed

+847
-193
lines changed

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
#define PY_MINOR_VERSION 12
2121
#define PY_MICRO_VERSION 0
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
23-
#define PY_RELEASE_SERIAL 2
23+
#define PY_RELEASE_SERIAL 3
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.12.0a2+"
26+
#define PY_VERSION "3.12.0a3"
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: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Mon Nov 14 12:13:19 2022
2+
# Autogenerated by Sphinx on Tue Dec 6 19:31:49 2022
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -11109,8 +11109,9 @@
1110911109
'y)" is\n'
1111011110
'typically invalid without special support in "MyClass". To '
1111111111
'be able to\n'
11112-
'use that kind of patterns, the class needs to define a\n'
11113-
'*__match_args__* attribute.\n'
11112+
'use that kind of pattern, the class needs to define a '
11113+
'*__match_args__*\n'
11114+
'attribute.\n'
1111411115
'\n'
1111511116
'object.__match_args__\n'
1111611117
'\n'
@@ -11510,7 +11511,7 @@
1151011511
'property\n'
1151111512
' being one of “Lm”, “Lt”, “Lu”, “Ll”, or “Lo”. Note '
1151211513
'that this is\n'
11513-
' different from the Alphabetic property defined in the '
11514+
' different from the Alphabetic property defined in the '
1151411515
'Unicode\n'
1151511516
' Standard.\n'
1151611517
'\n'
@@ -11559,9 +11560,9 @@
1155911560
'according to the\n'
1156011561
' language definition, section Identifiers and keywords.\n'
1156111562
'\n'
11562-
' Call "keyword.iskeyword()" to test whether string "s" '
11563-
'is a reserved\n'
11564-
' identifier, such as "def" and "class".\n'
11563+
' "keyword.iskeyword()" can be used to test whether '
11564+
'string "s" is a\n'
11565+
' reserved identifier, such as "def" and "class".\n'
1156511566
'\n'
1156611567
' Example:\n'
1156711568
'\n'

0 commit comments

Comments
 (0)