summaryrefslogtreecommitdiff
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-10-01 22:07:32 +0200
committerVictor Stinner <victor.stinner@gmail.com>2015-10-01 22:07:32 +0200
commitd4339bc95839ec651b676956279690c4be1b6389 (patch)
tree487c1cd60d314f9677be5388fc76d6d4cf9b8fdf /Objects/unicodeobject.c
parent8bc1680a40063865067930eb5b82e3858b01d17f (diff)
downloadcpython-d4339bc95839ec651b676956279690c4be1b6389.tar.gz
Make _PyUnicode_TranslateCharmap() symbol private
unicodeobject.h exposes PyUnicode_TranslateCharmap() and PyUnicode_Translate().
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index df3a1b5069..93c4ad9fe0 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)