From 98deeb4df04a6f3d98cddae5b706758ed683ccc2 Mon Sep 17 00:00:00 2001 From: Christopher Chavez Date: Sun, 3 Dec 2023 17:26:09 -0600 Subject: [PATCH] gh-1126678: Declare `Tkapp_CallDeallocArgs()` as `static` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …as per PEP 7. --- Modules/_tkinter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index f9a18644945c65..64e752c305aae1 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -1202,7 +1202,7 @@ typedef struct Tkapp_CallEvent { Tcl_Condition *done; } Tkapp_CallEvent; -void +static void Tkapp_CallDeallocArgs(Tcl_Obj** objv, Tcl_Obj** objStore, int objc) { int i;