mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
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:
parent
ce129a5e79
commit
5592e4d7d5
1 changed files with 1 additions and 1 deletions
|
|
@ -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, ""); \
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue