8000 bpo-37390: Add audit event table to documentations by zooba · Pull Request #14406 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-37390: Add audit event table to documentations #14406

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jun 27, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Handle missing all_audit_events
  • Loading branch information
zooba committed Jun 26, 2019
commit 455e3b77dbe1dafdbb96670ff3af874644d0e24a
2 changes: 1 addition & 1 deletion Doc/tools/extensions/pyspecific.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ def process_audit_events(app, doctree, fromdocname):
row += nodes.entry('', nodes.paragraph('', nodes.Text('References')))
head += row

for name in sorted(env.all_audit_events):
for name in sorted(getattr(env, "all_audit_events", ())):
audit_event = env.all_audit_events[name]

row = nodes.row()
Expand Down
0