summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2008-12-27 19:46:35 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2008-12-27 19:46:35 (GMT)
commit2056bed45eec7a0a7e3cf8345de43cc271996625 (patch)
treea81904188445770341b1a86e816f85b2c96b8f63 /Objects/unicodeobject.c
parent7d41890dfa8ceac7d549146fe4e73fc3d86696c2 (diff)
downloadcpython-2056bed45eec7a0a7e3cf8345de43cc271996625.zip
cpython-2056bed45eec7a0a7e3cf8345de43cc271996625.tar.gz
cpython-2056bed45eec7a0a7e3cf8345de43cc271996625.tar.bz2
Revert unwanted function name change introduced by r67939.
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 50476ea..3a33429 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -3253,7 +3253,7 @@ PyObject *PyUnicode_EncodeUnicodeEscape(const Py_UNICODE *s,
return repr;
}
-PyObject *PyUnicodeAsUnicodeEscapeString(PyObject *unicode)
+PyObject *PyUnicode_AsUnicodeEscapeString(PyObject *unicode)
{
PyObject *s;
if (!PyUnicode_Check(unicode)) {