Skip to content

Commit 839d789

Browse files
committed
Python 3.10.0rc2
1 parent 53257cf commit 839d789

70 files changed

Lines changed: 695 additions & 152 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
@@ -20,10 +20,10 @@
2020
#define PY_MINOR_VERSION 10
2121
#define PY_MICRO_VERSION 0
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23-
#define PY_RELEASE_SERIAL 1
23+
#define PY_RELEASE_SERIAL 2
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.10.0rc1+"
26+
#define PY_VERSION "3.10.0rc2"
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: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Mon Aug 2 20:07:41 2021
2+
# Autogenerated by Sphinx on Tue Sep 7 14:18:15 2021
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -1332,7 +1332,7 @@
13321332
'result. Division by zero raises the "ZeroDivisionError" '
13331333
'exception.\n'
13341334
'\n'
1335-
'This operation can be customized using the special "__div__()" '
1335+
'This operation can be customized using the special "__truediv__()" '
13361336
'and\n'
13371337
'"__floordiv__()" methods.\n'
13381338
'\n'
@@ -13364,8 +13364,11 @@
1336413364
' variables; "f_globals" is used for global variables;\n'
1336513365
' "f_builtins" is used for built-in (intrinsic) names; '
1336613366
'"f_lasti"\n'
13367-
' gives the precise instruction (this is an index into the\n'
13368-
' bytecode string of the code object).\n'
13367+
' gives the precise instruction (it represents a wordcode '
13368+
'index,\n'
13369+
' which means that to get an index into the bytecode string of '
13370+
'the\n'
13371+
' code object it needs to be multiplied by 2).\n'
1336913372
'\n'
1337013373
' Accessing "f_code" raises an auditing event '
1337113374
'"object.__getattr__"\n'

0 commit comments

Comments
 (0)