diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-22 09:28:35 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-22 09:28:35 +0000 |
commit | 227b5339edcdcc9ca6322a2217b75db11b69048f (patch) | |
tree | 8829d0c1b2ac9474b386499ca0fda37700f72bd8 /Modules/_tkinter.c | |
parent | 914a81841f881122f95eb5a9330a3ef96de174cd (diff) | |
download | cpython-git-227b5339edcdcc9ca6322a2217b75db11b69048f.tar.gz |
Finish getting rid of statichere/staticforward
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r-- | Modules/_tkinter.c | 4 |
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*/ |