summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorŁukasz Langa <lukasz@langa.pl>2021-06-28 10:08:34 (GMT)
committerŁukasz Langa <lukasz@langa.pl>2021-06-28 10:08:34 (GMT)
commitc3ffbbdf3d5645ee07c22649f2028f9dffc762ba (patch)
tree6eb4040f844b13c315e775fc1283b19ca2badeaa /Lib
parent634da2de88af06eb8c6ebdb90d8c00005847063d (diff)
downloadcpython-3.8.11.zip
cpython-3.8.11.tar.gz
cpython-3.8.11.tar.bz2
Python 3.8.11v3.8.11
Diffstat (limited to 'Lib')
-rw-r--r--Lib/pydoc_data/topics.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py
index e3dc1c5..119e511 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 May 3 11:26:22 2021
+# Autogenerated by Sphinx on Mon Jun 28 12:07:21 2021
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
'\n'
@@ -1358,6 +1358,10 @@ topics = {'assert': 'The "assert" statement\n'
'through their "__code__" attribute. See also the '
'"code" module.\n'
'\n'
+ 'Accessing "__code__" raises an auditing event '
+ '"object.__getattr__"\n'
+ 'with arguments "obj" and ""__code__"".\n'
+ '\n'
'A code object can be executed or evaluated by passing '
'it (instead of a\n'
'source string) to the "exec()" or "eval()" built-in '
@@ -12233,6 +12237,10 @@ topics = {'assert': 'The "assert" statement\n'
' gives the precise instruction (this is an index into the\n'
' bytecode string of the code object).\n'
'\n'
+ ' Accessing "f_code" raises an auditing event '
+ '"object.__getattr__"\n'
+ ' with arguments "obj" and ""f_code"".\n'
+ '\n'
' Special writable attributes: "f_trace", if not "None", is a\n'
' function called for various events during code execution '
'(this\n'
@@ -12316,6 +12324,9 @@ topics = {'assert': 'The "assert" statement\n'
' the exception occurred in a "try" statement with no matching\n'
' except clause or with a finally clause.\n'
'\n'
+ ' Accessing "tb_frame" raises an auditing event\n'
+ ' "object.__getattr__" with arguments "obj" and ""tb_frame"".\n'
+ '\n'
' Special writable attribute: "tb_next" is the next level in '
'the\n'
' stack trace (towards the frame where the exception occurred), '