Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15af26f commit 633b32aCopy full SHA for 633b32a
1 file changed
Include/pyerrors.h
@@ -26,6 +26,13 @@ typedef struct {
26
PyObject *print_file_and_line;
27
} PySyntaxErrorObject;
28
29
+typedef struct {
30
+ PyException_HEAD
31
+ PyObject *msg;
32
+ PyObject *name;
33
+ PyObject *path;
34
+} PyImportErrorObject;
35
+
36
typedef struct {
37
PyException_HEAD
38
PyObject *encoding;
@@ -231,13 +238,6 @@ PyAPI_FUNC(PyObject *) PyErr_Format(
231
238
...
232
239
);
233
240
234
-typedef struct {
235
- PyException_HEAD
236
- PyObject *msg;
237
- PyObject *name;
- PyObject *path;
-} PyImportErrorObject;
-
241
#ifdef MS_WINDOWS
242
PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErrWithFilename(
243
int ierr,
0 commit comments