diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-21 01:58:55 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-21 01:58:55 +0100 |
commit | 34ad2faf857f7f16d7b69ebc1ba0626f11a3fba3 (patch) | |
tree | 2086bcb18aa8f05886fbd811f544c3aa60ac6b21 /Include/pyerrors.h | |
parent | ea9621102ef84c64f8e22fcb296eed64a1771ef1 (diff) | |
download | cpython-git-34ad2faf857f7f16d7b69ebc1ba0626f11a3fba3.tar.gz |
Closes #11210: Remove PyErr_SetFromWindowsErrWithFilenameObject() of pyerrors.h
PyErr_SetFromWindowsErrWithFilenameObject() was never implemented.
Diffstat (limited to 'Include/pyerrors.h')
-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 edc8218a53..8b6322b2a6 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 */ |