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
2 changes: 1 addition & 1 deletion Doc/library/tk.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ alternative `GUI frameworks and tools <https://wiki.python.org/moin/GuiProgrammi
tkinter.rst
tkinter.colorchooser.rst
tkinter.font.rst
dialog.rst
tkinter.dialog.rst
tkinter.messagebox.rst
tkinter.scrolledtext.rst
tkinter.dnd.rst
Expand Down
File renamed without changes.
7 changes: 4 additions & 3 deletions Doc/tools/check-html-ids.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,10 @@ def do_check(baseline, checked, excluded, *, verbose_print):
try:
checked_ids = checked[name]
except KeyError:
successful = False
print(f'{name}: (page missing)')
print()
if (name, '(page missing)') not in excluded:
successful = False
print(f'{name}: (page missing)')
print()
else:
missing_ids = set(baseline_ids) - set(checked_ids)
if missing_ids:
Expand Down
3 changes: 3 additions & 0 deletions Doc/tools/removed-ids.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,6 @@ reference/expressions.html: grammar-token-python-grammar-set_display
# Moved to a different page
c-api/typeobj.html: c.Py_tp_base
c-api/typeobj.html: c.Py_tp_bases

# Renamed to library/tkinter.dialog.html
library/dialog.html: (page missing)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Rename Doc/library/dialog.rst to tkinter.dialog.rst.
Loading