diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-10-01 20:07:32 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-10-01 20:07:32 (GMT) |
commit | 3222da26fe873410cbdbc18744e19a7d0f6a7523 (patch) | |
tree | 2bcf0e3f4a456d5d45d69ed7f9f35e72b9784178 /Objects | |
parent | 13f7fc5771f07d401002dbe7e67ad1a62d0e8ce5 (diff) | |
download | cpython-3222da26fe873410cbdbc18744e19a7d0f6a7523.zip cpython-3222da26fe873410cbdbc18744e19a7d0f6a7523.tar.gz cpython-3222da26fe873410cbdbc18744e19a7d0f6a7523.tar.bz2 |
Make _PyUnicode_TranslateCharmap() symbol private
unicodeobject.h exposes PyUnicode_TranslateCharmap() and PyUnicode_Translate().
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index df3a1b5..93c4ad9 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -8683,7 +8683,7 @@ exit: return res; } -PyObject * +static PyObject * _PyUnicode_TranslateCharmap(PyObject *input, PyObject *mapping, const char *errors) |