diff options
author | Pablo Galindo <pablogsal@gmail.com> | 2021-09-07 13:17:15 (GMT) |
---|---|---|
committer | Pablo Galindo <pablogsal@gmail.com> | 2021-09-07 13:18:28 (GMT) |
commit | 839d7893943782ee803536a47f1d4de160314f85 (patch) | |
tree | dcfe1cd1df7d038d4f435151da94aac8f98a8dd9 /Lib/pydoc_data | |
parent | 53257cf19fc06fff446815b3278d4b80ec3e7ba3 (diff) | |
download | cpython-839d7893943782ee803536a47f1d4de160314f85.zip cpython-839d7893943782ee803536a47f1d4de160314f85.tar.gz cpython-839d7893943782ee803536a47f1d4de160314f85.tar.bz2 |
Python 3.10.0rc2v3.10.0rc2
Diffstat (limited to 'Lib/pydoc_data')
-rw-r--r-- | Lib/pydoc_data/topics.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py index 3566851..a1a81cb 100644 --- a/Lib/pydoc_data/topics.py +++ b/Lib/pydoc_data/topics.py @@ -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 @@ topics = {'assert': 'The "assert" statement\n' '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 @@ topics = {'assert': 'The "assert" statement\n' ' 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' |