File tree 1 file changed +4
-4
lines changed
Filter options
1 file changed +4
-4
lines changed
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ NoDefault_reduce(PyObject *op, PyObject *Py_UNUSED(ignored))
73
73
return PyUnicode_FromString ("NoDefault" );
74
74
}
75
75
76
- static PyMethodDef notimplemented_methods [] = {
76
+ static PyMethodDef nodefault_methods [] = {
77
77
{"__reduce__" , NoDefault_reduce , METH_NOARGS , NULL },
78
78
{NULL , NULL }
79
79
};
@@ -98,7 +98,7 @@ nodefault_dealloc(PyObject *nodefault)
98
98
_Py_SetImmortal (nodefault );
99
99
}
100
100
101
- PyDoc_STRVAR (notimplemented_doc ,
101
+ PyDoc_STRVAR (nodefault_doc ,
102
102
"NoDefaultType()\n"
103
103
"--\n\n"
104
104
"The type of the NoDefault singleton." );
@@ -109,8 +109,8 @@ PyTypeObject _PyNoDefault_Type = {
109
109
.tp_dealloc = nodefault_dealloc ,
110
110
.tp_repr = NoDefault_repr ,
111
111
.tp_flags = Py_TPFLAGS_DEFAULT ,
112
- .tp_doc = notimplemented_doc ,
113
- .tp_methods = notimplemented_methods ,
112
+ .tp_doc = nodefault_doc ,
113
+ .tp_methods = nodefault_methods ,
114
114
.tp_new = nodefault_new ,
115
115
};
116
116
You can’t perform that action at this time.
0 commit comments