diff options
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r-- | Modules/_tkinter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 444c268..c71ffd0 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -2107,7 +2107,7 @@ Tkapp_GetInt(PyObject *self, PyObject *args) if (PyTuple_Size(args) == 1) { PyObject* o = PyTuple_GetItem(args, 0); - if (PyInt_Check(o) || PyLong_Check(o)) { + if (_PyAnyInt_Check(o)) { Py_INCREF(o); return o; } |