[Python-checkins] r67964 - python/branches/py3k/Objects/unicodeobject.c

alexandre.vassalotti python-checkins at python.org
Sat Dec 27 20:46:35 CET 2008


Author: alexandre.vassalotti
Date: Sat Dec 27 20:46:35 2008
New Revision: 67964

Log:
Revert unwanted function name change introduced by r67939.


Modified:
   python/branches/py3k/Objects/unicodeobject.c

Modified: python/branches/py3k/Objects/unicodeobject.c
==============================================================================
--- python/branches/py3k/Objects/unicodeobject.c	(original)
+++ python/branches/py3k/Objects/unicodeobject.c	Sat Dec 27 20:46:35 2008
@@ -3253,7 +3253,7 @@
     return repr;
 }
 
-PyObject *PyUnicodeAsUnicodeEscapeString(PyObject *unicode)
+PyObject *PyUnicode_AsUnicodeEscapeString(PyObject *unicode)
 {
     PyObject *s;
     if (!PyUnicode_Check(unicode)) {


More information about the Python-checkins mailing list