Kaydet (Commit) cfa61292 authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Fix typo.

üst 0d3072e9
......@@ -87,8 +87,7 @@ zipimporter_init(ZipImporter *self, PyObject *args, PyObject *kwds)
}
#ifdef ALTSEP
tmp = PyObject_CallMethodId(path, &PyId_replace, "CC",
ALTSEP, SEP);
tmp = _PyObject_CallMethodId(path, &PyId_replace, "CC", ALTSEP, SEP);
if (!tmp)
goto error;
Py_DECREF(path);
......@@ -450,7 +449,7 @@ zipimporter_get_data(PyObject *obj, PyObject *args)
return NULL;
#ifdef ALTSEP
path = PyObject_CallMethodId(path, &PyId_replace, "CC", ALTSEP, SEP);
path = _PyObject_CallMethodId(path, &PyId_replace, "CC", ALTSEP, SEP);
if (!path)
return NULL;
#else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment