From c7a3dc3cc302c82cc2fd4356c72492791c77e410 Mon Sep 17 00:00:00 2001 From: Marcell Perger <102254594+MarcellPerger1@users.noreply.github.com> Date: Fri, 20 Jun 2025 23:45:36 +0100 Subject: [PATCH] gh-135756: Fix nonexistent parameter in tkinter docs (GH-135770) Remove nonexistent color parameter from tkinter.commondialog.Dialog.show() method documentation. (cherry picked from commit 4ddf505d9982dc8afead8f52f5754eea5ebde623) Co-authored-by: Marcell Perger <102254594+MarcellPerger1@users.noreply.github.com> --- Doc/library/dialog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/dialog.rst b/Doc/library/dialog.rst index 191e0da12103fa..e0693e8eb6ed22 100644 --- a/Doc/library/dialog.rst +++ b/Doc/library/dialog.rst @@ -220,7 +220,7 @@ is the base class for dialogs defined in other supporting modules. .. class:: Dialog(master=None, **options) - .. method:: show(color=None, **options) + .. method:: show(**options) Render the Dialog window.