diff options
Diffstat (limited to 'Modules/gcmodule.c')
-rw-r--r-- | Modules/gcmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index 2533de6..6c8ca38 100644 --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -769,7 +769,7 @@ get_time(void) { double result = 0; if (tmod != NULL) { - _Py_identifier(time); + _Py_IDENTIFIER(time); PyObject *f = _PyObject_CallMethodId(tmod, &PyId_time, NULL); if (f == NULL) { |