Python 3.10.0rc2

This commit is contained in:
Pablo Galindo 2021-09-07 14:17:15 +01:00
parent 53257cf19f
commit 839d789394
No known key found for this signature in database
GPG key ID: FFE87404168BD847
70 changed files with 695 additions and 152 deletions

View file

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Autogenerated by Sphinx on Mon Aug 2 20:07:41 2021
# Autogenerated by Sphinx on Tue Sep 7 14:18:15 2021
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
'\n'
@ -1332,7 +1332,7 @@
'result. Division by zero raises the "ZeroDivisionError" '
'exception.\n'
'\n'
'This operation can be customized using the special "__div__()" '
'This operation can be customized using the special "__truediv__()" '
'and\n'
'"__floordiv__()" methods.\n'
'\n'
@ -13364,8 +13364,11 @@
' variables; "f_globals" is used for global variables;\n'
' "f_builtins" is used for built-in (intrinsic) names; '
'"f_lasti"\n'
' gives the precise instruction (this is an index into the\n'
' bytecode string of the code object).\n'
' gives the precise instruction (it represents a wordcode '
'index,\n'
' which means that to get an index into the bytecode string of '
'the\n'
' code object it needs to be multiplied by 2).\n'
'\n'
' Accessing "f_code" raises an auditing event '
'"object.__getattr__"\n'