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 eabfab1 commit 344864fCopy full SHA for 344864f
1 file changed
Python/bltinmodule.c
@@ -1954,6 +1954,7 @@ PyObject *PyExc_MemoryError;
1954
PyObject *PyExc_NameError;
1955
PyObject *PyExc_OverflowError;
1956
PyObject *PyExc_RuntimeError;
1957
+PyObject *PyExc_NotImplementedError;
1958
PyObject *PyExc_SyntaxError;
1959
PyObject *PyExc_SystemError;
1960
PyObject *PyExc_SystemExit;
@@ -1989,6 +1990,7 @@ bltin_exc[] = {
1989
1990
{"NameError", &PyExc_NameError, 1},
1991
{"OverflowError", &PyExc_OverflowError, 1},
1992
{"RuntimeError", &PyExc_RuntimeError, 1},
1993
+ {"NotImplementedError",&PyExc_NotImplementedError,1},
1994
{"SyntaxError", &PyExc_SyntaxError, 1},
1995
{"SystemError", &PyExc_SystemError, 1},
1996
{"SystemExit", &PyExc_SystemExit, 1},
0 commit comments