Commit e4d43b05 authored by Raymond Hettinger's avatar Raymond Hettinger

Add sentinel

parent 8159bba2
...@@ -2919,6 +2919,7 @@ PyDoc_STRVAR(count_reduce_doc, "Return state information for pickling."); ...@@ -2919,6 +2919,7 @@ PyDoc_STRVAR(count_reduce_doc, "Return state information for pickling.");
static PyMethodDef count_methods[] = { static PyMethodDef count_methods[] = {
{"__reduce__", (PyCFunction)count_reduce, METH_NOARGS, {"__reduce__", (PyCFunction)count_reduce, METH_NOARGS,
count_reduce_doc}, count_reduce_doc},
{NULL, NULL} /* sentinel */
}; };
PyDoc_STRVAR(count_doc, PyDoc_STRVAR(count_doc,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment