Fix a typo in SLOT0 macro for the declaration of cache_str.

Dunno why I didn't catch this before.
This commit is contained in:
Guido van Rossum 2001-08-28 18:28:21 +00:00
parent ce129a5e79
commit 5592e4d7d5

View file

@ -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, ""); \
}