diff options
author | Mark Hammond <mhammond@skippinet.com.au> | 2002-10-03 05:10:39 (GMT) |
---|---|---|
committer | Mark Hammond <mhammond@skippinet.com.au> | 2002-10-03 05:10:39 (GMT) |
commit | c2e85bd4e20dc3b5bc446a705a46397c799f56c0 (patch) | |
tree | 8db1cdb9fedfe47739b9ace6da4df65389da3567 /Include | |
parent | eb287a26621001fb5d945b7b6246ccac77378cc7 (diff) | |
download | cpython-c2e85bd4e20dc3b5bc446a705a46397c799f56c0.zip cpython-c2e85bd4e20dc3b5bc446a705a46397c799f56c0.tar.gz cpython-c2e85bd4e20dc3b5bc446a705a46397c799f56c0.tar.bz2 |
Patch 594001: PEP 277 - Unicode file name support for Windows NT.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pyerrors.h | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 119aa2e..18dee28 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -81,16 +81,37 @@ PyAPI_DATA(PyObject *) PyExc_FutureWarning; PyAPI_FUNC(int) PyErr_BadArgument(void); PyAPI_FUNC(PyObject *) PyErr_NoMemory(void); PyAPI_FUNC(PyObject *) PyErr_SetFromErrno(PyObject *); +PyAPI_FUNC(PyObject *) PyErr_SetFromErrnoWithFilenameObject( + PyObject *, PyObject *); PyAPI_FUNC(PyObject *) PyErr_SetFromErrnoWithFilename(PyObject *, char *); +#ifdef Py_WIN_WIDE_FILENAMES +PyAPI_FUNC(PyObject *) PyErr_SetFromErrnoWithUnicodeFilename( + PyObject *, Py_UNICODE *); +#endif /* Py_WIN_WIDE_FILENAMES */ + PyAPI_FUNC(PyObject *) PyErr_Format(PyObject *, const char *, ...) Py_GCC_ATTRIBUTE((format(printf, 2, 3))); + #ifdef MS_WINDOWS -PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErrWithFilename(int, const char *); +PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErrWithFilenameObject( + int, const char *); +PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErrWithFilename( + int, const char *); +#ifdef Py_WIN_WIDE_FILENAMES +PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErrWithUnicodeFilename( + int, const Py_UNICODE *); +#endif /* Py_WIN_WIDE_FILENAMES */ PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErr(int); +PyAPI_FUNC(PyObject *) PyErr_SetExcFromWindowsErrWithFilenameObject( + PyObject *,int, PyObject *); PyAPI_FUNC(PyObject *) PyErr_SetExcFromWindowsErrWithFilename( PyObject *,int, const char *); +#ifdef Py_WIN_WIDE_FILENAMES +PyAPI_FUNC(PyObject *) PyErr_SetExcFromWindowsErrWithUnicodeFilename( + PyObject *,int, const Py_UNICODE *); +#endif /* Py_WIN_WIDE_FILENAMES */ PyAPI_FUNC(PyObject *) PyErr_SetExcFromWindowsErr(PyObject *, int); -#endif +#endif /* MS_WINDOWS */ /* Export the old function so that the existing API remains available: */ PyAPI_FUNC(void) PyErr_BadInternalCall(void); |