diff options
Diffstat (limited to 'Modules/operator.c')
-rw-r--r-- | Modules/operator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/operator.c b/Modules/operator.c index d31b178..1398fca 100644 --- a/Modules/operator.c +++ b/Modules/operator.c @@ -449,7 +449,7 @@ dotted_getattr(PyObject *obj, PyObject *attr) return NULL; } - s = PyUnicode_AsString(attr); + s = _PyUnicode_AsString(attr); Py_INCREF(obj); for (;;) { PyObject *newobj, *str; |