diff options
-rw-r--r-- | Objects/typeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 476926c..8bae366 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -2390,7 +2390,7 @@ add_operators(PyTypeObject *type) static PyObject * \ FUNCNAME(PyObject *self) \ { \ - static PyObject cache_str; \ + static PyObject *cache_str; \ return call_method(self, OPSTR, &cache_str, ""); \ } |