diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-21 00:58:55 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-21 00:58:55 (GMT) |
commit | 34ad2faf857f7f16d7b69ebc1ba0626f11a3fba3 (patch) | |
tree | 2086bcb18aa8f05886fbd811f544c3aa60ac6b21 /Include | |
parent | ea9621102ef84c64f8e22fcb296eed64a1771ef1 (diff) | |
download | cpython-34ad2faf857f7f16d7b69ebc1ba0626f11a3fba3.zip cpython-34ad2faf857f7f16d7b69ebc1ba0626f11a3fba3.tar.gz cpython-34ad2faf857f7f16d7b69ebc1ba0626f11a3fba3.tar.bz2 |
Closes #11210: Remove PyErr_SetFromWindowsErrWithFilenameObject() of pyerrors.h
PyErr_SetFromWindowsErrWithFilenameObject() was never implemented.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pyerrors.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h index edc8218..8b6322b 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -208,8 +208,6 @@ PyAPI_FUNC(PyObject *) PyErr_Format( ); #ifdef MS_WINDOWS -PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErrWithFilenameObject( - int, const char *); PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErrWithFilename( int ierr, const char *filename /* decoded from the filesystem encoding */ |