summaryrefslogtreecommitdiff
path: root/Modules/_tkinter.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r--Modules/_tkinter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index b85e15844c..e8efaa7a19 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -720,7 +720,7 @@ typedef struct {
PyObject *string; /* This cannot cause cycles. */
} PyTclObject;
-staticforward PyTypeObject PyTclObject_Type;
+static PyTypeObject PyTclObject_Type;
#define PyTclObject_Check(v) ((v)->ob_type == &PyTclObject_Type)
static PyObject *
@@ -858,7 +858,7 @@ static PyMethodDef PyTclObject_methods[] = {
{0}
};
-statichere PyTypeObject PyTclObject_Type = {
+static PyTypeObject PyTclObject_Type = {
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
"_tkinter.Tcl_Obj", /*tp_name*/