Skip to content

Commit bb3fdcf

Browse files
committed
Python 3.9.8
1 parent a8ae7a5 commit bb3fdcf

78 files changed

Lines changed: 783 additions & 180 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: 2 additions & 2 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 9
21-
#define PY_MICRO_VERSION 7
21+
#define PY_MICRO_VERSION 8
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
2323
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.9.7+"
26+
#define PY_VERSION "3.9.8"
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: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Wed Sep 22 01:22:10 2021
2+
# Autogenerated by Sphinx on Fri Nov 5 20:19:23 2021
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -4715,9 +4715,9 @@
47154715
'operations.\n'
47164716
'\n'
47174717
'If the "global" statement occurs within a block, all uses of '
4718-
'the name\n'
4719-
'specified in the statement refer to the binding of that name in '
4720-
'the\n'
4718+
'the names\n'
4719+
'specified in the statement refer to the bindings of those names '
4720+
'in the\n'
47214721
'top-level namespace. Names are resolved in the top-level '
47224722
'namespace by\n'
47234723
'searching the global namespace, i.e. the namespace of the '
@@ -4726,9 +4726,10 @@
47264726
'namespace\n'
47274727
'of the module "builtins". The global namespace is searched '
47284728
'first. If\n'
4729-
'the name is not found there, the builtins namespace is '
4730-
'searched. The\n'
4731-
'"global" statement must precede all uses of the name.\n'
4729+
'the names are not found there, the builtins namespace is '
4730+
'searched.\n'
4731+
'The "global" statement must precede all uses of the listed '
4732+
'names.\n'
47324733
'\n'
47334734
'The "global" statement has the same scope as a name binding '
47344735
'operation\n'
@@ -6786,8 +6787,8 @@
67866787
'operations.\n'
67876788
'\n'
67886789
'If the "global" statement occurs within a block, all uses of the '
6789-
'name\n'
6790-
'specified in the statement refer to the binding of that name in '
6790+
'names\n'
6791+
'specified in the statement refer to the bindings of those names in '
67916792
'the\n'
67926793
'top-level namespace. Names are resolved in the top-level '
67936794
'namespace by\n'
@@ -6796,9 +6797,9 @@
67966797
'namespace\n'
67976798
'of the module "builtins". The global namespace is searched '
67986799
'first. If\n'
6799-
'the name is not found there, the builtins namespace is searched. '
6800-
'The\n'
6801-
'"global" statement must precede all uses of the name.\n'
6800+
'the names are not found there, the builtins namespace is '
6801+
'searched.\n'
6802+
'The "global" statement must precede all uses of the listed names.\n'
68026803
'\n'
68036804
'The "global" statement has the same scope as a name binding '
68046805
'operation\n'
@@ -7143,9 +7144,9 @@
71437144
' of the object truncated to an "Integral" (typically an '
71447145
'"int").\n'
71457146
'\n'
7146-
' If "__int__()" is not defined then the built-in function '
7147-
'"int()"\n'
7148-
' falls back to "__trunc__()".\n',
7147+
' The built-in function "int()" falls back to '
7148+
'"__trunc__()" if\n'
7149+
' neither "__int__()" nor "__index__()" is defined.\n',
71497150
'objects': 'Objects, values and types\n'
71507151
'*************************\n'
71517152
'\n'
@@ -9888,9 +9889,9 @@
98889889
' of the object truncated to an "Integral" (typically an '
98899890
'"int").\n'
98909891
'\n'
9891-
' If "__int__()" is not defined then the built-in function '
9892-
'"int()"\n'
9893-
' falls back to "__trunc__()".\n'
9892+
' The built-in function "int()" falls back to "__trunc__()" '
9893+
'if\n'
9894+
' neither "__int__()" nor "__index__()" is defined.\n'
98949895
'\n'
98959896
'\n'
98969897
'With Statement Context Managers\n'

0 commit comments

Comments
 (0)