@@ -369,19 +369,15 @@ static PyGetSetDef AncestorBuilder_getsetters[] = {
369369};
370370
371371static PyMethodDef AncestorBuilder_methods [] = {
372- {"add_site" , (PyCFunction ) AncestorBuilder_add_site ,
373- METH_VARARGS |METH_KEYWORDS ,
374- "Adds the specified site to this ancestor builder." },
375- {"add_terminal_site" , (PyCFunction ) AncestorBuilder_add_terminal_site ,
376- METH_NOARGS ,
377- "Adds a terminal site to this ancestor builder." },
378- {"make_ancestor" , (PyCFunction ) AncestorBuilder_make_ancestor ,
379- METH_VARARGS |METH_KEYWORDS ,
380- "Makes the specified ancestor." },
381- {"ancestor_descriptors" , (PyCFunction ) AncestorBuilder_ancestor_descriptors ,
382- METH_NOARGS ,
383- "Returns a list of ancestor (frequency, focal_sites) tuples." },
384- {NULL } /* Sentinel */
372+ { "add_site" , (PyCFunction ) AncestorBuilder_add_site , METH_VARARGS | METH_KEYWORDS ,
373+ "Adds the specified site to this ancestor builder." },
374+ { "add_terminal_site" , (PyCFunction ) AncestorBuilder_add_terminal_site , METH_NOARGS ,
375+ "Adds a terminal site to this ancestor builder." },
376+ { "make_ancestor" , (PyCFunction ) AncestorBuilder_make_ancestor ,
377+ METH_VARARGS | METH_KEYWORDS , "Makes the specified ancestor." },
378+ { "ancestor_descriptors" , (PyCFunction ) AncestorBuilder_ancestor_descriptors ,
379+ METH_NOARGS , "Returns a list of ancestor (frequency, focal_sites) tuples." },
380+ { NULL } /* Sentinel */
385381};
386382
387383static PyTypeObject AncestorBuilderType = {
0 commit comments