Make _PyUnicode_TranslateCharmap() symbol private

unicodeobject.h exposes PyUnicode_TranslateCharmap() and PyUnicode_Translate().
This commit is contained in:
Victor Stinner 2015-10-01 22:07:32 +02:00
parent 13f7fc5771
commit 3222da26fe

View File

@ -8683,7 +8683,7 @@ exit:
return res;
}
PyObject *
static PyObject *
_PyUnicode_TranslateCharmap(PyObject *input,
PyObject *mapping,
const char *errors)