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 5ed85ec commit 23ab199Copy full SHA for 23ab199
1 file changed
Python/bltinmodule.c
@@ -2261,6 +2261,9 @@ _PyBuiltin_Init(void)
2261
return NULL;
2262
if (PyDict_SetItemString(dict, "Ellipsis", Py_Ellipsis) < 0)
2263
2264
+ if (PyDict_SetItemString(dict, "NotImplemented",
2265
+ Py_NotImplemented) < 0)
2266
+ return NULL;
2267
debug = PyInt_FromLong(Py_OptimizeFlag == 0);
2268
if (PyDict_SetItemString(dict, "__debug__", debug) < 0) {
2269
Py_XDECREF(debug);
0 commit comments