put PyImportErrorObject with its brothers

This commit is contained in:
Benjamin Peterson 2012-04-12 21:50:35 -04:00
parent 15af26fa92
commit 633b32a7fa
1 changed files with 7 additions and 7 deletions

View File

@ -26,6 +26,13 @@ typedef struct {
PyObject *print_file_and_line;
} PySyntaxErrorObject;
typedef struct {
PyException_HEAD
PyObject *msg;
PyObject *name;
PyObject *path;
} PyImportErrorObject;
typedef struct {
PyException_HEAD
PyObject *encoding;
@ -231,13 +238,6 @@ PyAPI_FUNC(PyObject *) PyErr_Format(
...
);
typedef struct {
PyException_HEAD
PyObject *msg;
PyObject *name;
PyObject *path;
} PyImportErrorObject;
#ifdef MS_WINDOWS
PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErrWithFilename(
int ierr,