From bf6e560d0ccbe6bee4d835a15a8e8e098b9c7ef6 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 12 Dec 2011 01:53:47 +0100 Subject: Make PyUnicode_Copy() private => _PyUnicode_Copy() Undocument the function. Make also decode_utf8_errors() as private (static). --- Objects/codeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Objects/codeobject.c') diff --git a/Objects/codeobject.c b/Objects/codeobject.c index c5057bdeb9..550e28498d 100644 --- a/Objects/codeobject.c +++ b/Objects/codeobject.c @@ -249,7 +249,7 @@ validate_and_copy_tuple(PyObject *tup) return NULL; } else { - item = PyUnicode_Copy(item); + item = _PyUnicode_Copy(item); if (item == NULL) { Py_DECREF(newtuple); return NULL; -- cgit v1.2.1