From e53de3dc4a9021b5edabd44fd495df7770b6249c Mon Sep 17 00:00:00 2001 From: Philip Jenvey Date: Wed, 14 Apr 2010 03:01:39 +0000 Subject: #7301: decode $PYTHONWARNINGS in the same way as argv, test non-ascii values --- Include/Python.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Include/Python.h') diff --git a/Include/Python.h b/Include/Python.h index d900978141..315d6ecd79 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -123,6 +123,9 @@ /* _Py_Mangle is defined in compile.c */ PyAPI_FUNC(PyObject*) _Py_Mangle(PyObject *p, PyObject *name); +/* _Py_char2wchar lives in python.c */ +PyAPI_FUNC(wchar_t *) _Py_char2wchar(char *); + /* Convert a possibly signed character to a nonnegative int */ /* XXX This assumes characters are 8 bits wide */ #ifdef __CHAR_UNSIGNED__ -- cgit v1.2.1