From 2056bed45eec7a0a7e3cf8345de43cc271996625 Mon Sep 17 00:00:00 2001 From: Alexandre Vassalotti Date: Sat, 27 Dec 2008 19:46:35 +0000 Subject: [PATCH] Revert unwanted function name change introduced by r67939. --- Objects/unicodeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 50476ea80be..3a334294ee8 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)) {