From 5592e4d7d592a0e9156da7d0e4a290d64e982872 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 28 Aug 2001 18:28:21 +0000 Subject: Fix a typo in SLOT0 macro for the declaration of cache_str. Dunno why I didn't catch this before. --- Objects/typeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, ""); \ } -- cgit v0.12