diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-12-27 19:46:35 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-12-27 19:46:35 (GMT) |
commit | 2056bed45eec7a0a7e3cf8345de43cc271996625 (patch) | |
tree | a81904188445770341b1a86e816f85b2c96b8f63 /Objects | |
parent | 7d41890dfa8ceac7d549146fe4e73fc3d86696c2 (diff) | |
download | cpython-2056bed45eec7a0a7e3cf8345de43cc271996625.zip cpython-2056bed45eec7a0a7e3cf8345de43cc271996625.tar.gz cpython-2056bed45eec7a0a7e3cf8345de43cc271996625.tar.bz2 |
Revert unwanted function name change introduced by r67939.
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 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)) { |