return PyUnicode_FromString("NoDefault");
}
-static PyMethodDef notimplemented_methods[] = {
+static PyMethodDef nodefault_methods[] = {
{"__reduce__", NoDefault_reduce, METH_NOARGS, NULL},
{NULL, NULL}
};
_Py_SetImmortal(nodefault);
}
-PyDoc_STRVAR(notimplemented_doc,
+PyDoc_STRVAR(nodefault_doc,
"NoDefaultType()\n"
"--\n\n"
"The type of the NoDefault singleton.");
.tp_dealloc = nodefault_dealloc,
.tp_repr = NoDefault_repr,
.tp_flags = Py_TPFLAGS_DEFAULT,
- .tp_doc = notimplemented_doc,
- .tp_methods = notimplemented_methods,
+ .tp_doc = nodefault_doc,
+ .tp_methods = nodefault_methods,
.tp_new = nodefault_new,
};