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 cf179a2 commit df75f35Copy full SHA for df75f35
graalpython/com.oracle.graal.python.cext/src/exceptions.c
@@ -82,6 +82,7 @@ PyObject * PyExc_UnboundLocalError = NULL;
82
PyObject * PyExc_NotImplementedError = NULL;
83
PyObject * PyExc_RecursionError = NULL;
84
PyObject * PyExc_UnicodeEncodeError = NULL;
85
+PyObject * PyExc_GeneratorExit = NULL;
86
87
void initialize_exceptions() {
88
PyExc_AttributeError = PY_EXCEPTION("AttributeError");
@@ -120,6 +121,7 @@ void initialize_exceptions() {
120
121
PyExc_RecursionError = PY_EXCEPTION("RecursionError");
122
PyExc_NotImplementedError = PY_EXCEPTION("NotImplementedError");
123
PyExc_UnicodeEncodeError = PY_EXCEPTION("UnicodeEncodeError");
124
+ PyExc_GeneratorExit = PY_EXCEPTION("GeneratorExit");
125
}
126
127
0 commit comments