mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
Python 3.10.0rc2
This commit is contained in:
parent
53257cf19f
commit
839d789394
70 changed files with 695 additions and 152 deletions
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue