From 4cc0f24857c345ba99691b2ae6829c6ce3c0edcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lemburg?= Date: Thu, 7 Aug 2008 18:54:33 +0000 Subject: Rename PyUnicode_AsString -> _PyUnicode_AsString and PyUnicode_AsStringAndSize -> _PyUnicode_AsStringAndSize to mark them for interpreter internal use only. We'll have to rework these APIs or create new ones for the purpose of accessing the UTF-8 representation of Unicode objects for 3.1. --- Modules/_lsprof.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Modules/_lsprof.c') diff --git a/Modules/_lsprof.c b/Modules/_lsprof.c index 69ecaf101b..a6fd1f802c 100644 --- a/Modules/_lsprof.c +++ b/Modules/_lsprof.c @@ -180,7 +180,7 @@ normalizeUserObj(PyObject *obj) PyObject *mod = fn->m_module; const char *modname; if (mod && PyUnicode_Check(mod)) { - modname = PyUnicode_AsString(mod); + modname = _PyUnicode_AsString(mod); } else if (mod && PyModule_Check(mod)) { modname = PyModule_GetName(mod); -- cgit v1.2.1