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 df806a7 commit 87c6649Copy full SHA for 87c6649
graalpython/com.oracle.graal.python.cext/src/exceptions.c
@@ -83,6 +83,7 @@ PyObject * PyExc_NotImplementedError = NULL;
83
PyObject * PyExc_RecursionError = NULL;
84
PyObject * PyExc_UnicodeEncodeError = NULL;
85
PyObject * PyExc_GeneratorExit = NULL;
86
+PyObject * PyExc_EOFError = NULL;
87
88
void initialize_exceptions() {
89
PyExc_AttributeError = PY_EXCEPTION("AttributeError");
@@ -122,6 +123,7 @@ void initialize_exceptions() {
122
123
PyExc_NotImplementedError = PY_EXCEPTION("NotImplementedError");
124
PyExc_UnicodeEncodeError = PY_EXCEPTION("UnicodeEncodeError");
125
PyExc_GeneratorExit = PY_EXCEPTION("GeneratorExit");
126
+ PyExc_EOFError = PY_EXCEPTION("EOFError");
127
}
128
129
0 commit comments