From: mdehoon Date: Sat, 24 Jan 2026 15:20:14 +0000 (+0900) Subject: Remove stray typedef in _tkinter.c (GH-142924) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27246c34829ef87adaafafa10e3f946ade7d0de8;p=thirdparty%2FPython%2Fcpython.git Remove stray typedef in _tkinter.c (GH-142924) Co-authored-by: Michiel de Hoon --- diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index e6c0c1ff46ce..1524d02d9e5a 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -235,7 +235,6 @@ static PyThread_type_lock tcl_lock = 0; #ifdef TCL_THREADS static Tcl_ThreadDataKey state_key; -typedef PyThreadState *ThreadSpecificData; #define tcl_tstate \ (*(PyThreadState**)Tcl_GetThreadData(&state_key, sizeof(PyThreadState*))) #else