Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
15 changes: 15 additions & 0 deletions Doc/library/dialog.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
:orphan:

.. This page is retained solely for existing links to library/dialog.html.
Direct readers to the renamed page instead.

Tkinter dialogs
===============

This page has been renamed. The modules it documented are now described in
:doc:`./tkinter.dialogs`:

* :mod:`tkinter.simpledialog`
* :mod:`tkinter.filedialog`
* :mod:`tkinter.commondialog`
* :mod:`tkinter.dialog`
2 changes: 2 additions & 0 deletions Doc/tools/check-html-ids.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ def do_check(baseline, checked, excluded, *, verbose_print):
print(f'{name}: (page missing)')
print()
else:
if (name, '*') in excluded:
continue
missing_ids = set(baseline_ids) - set(checked_ids)
if missing_ids:
missing_ids = {
Expand Down
4 changes: 3 additions & 1 deletion Doc/tools/removed-ids.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# HTML IDs excluded from the check-html-ids.py check.
# Use "*" instead of an ID to exclude all IDs of a page, and
# "(page missing)" to allow the page itself to be removed.

# Remove from here in 3.16
c-api/allocation.html: deprecated-aliases
Expand Down Expand Up @@ -84,4 +86,4 @@ reference/expressions.html: generator.send
reference/expressions.html: generator.throw

# Renamed to library/tkinter.dialogs.html
library/dialog.html: (page missing)
library/dialog.html: *
Loading