@@ -128,7 +128,7 @@ const char* PyTriangulation_get_edges__doc__ =
128
128
" --\n\n "
129
129
" Return edges array" ;
130
130
131
- static PyObject* PyTriangulation_get_edges (PyTriangulation* self, PyObject* args, PyObject* kwds )
131
+ static PyObject* PyTriangulation_get_edges (PyTriangulation* self, PyObject* args)
132
132
{
133
133
Triangulation::EdgeArray* result;
134
134
CALL_CPP (" get_edges" , (result = &self->ptr ->get_edges ()));
@@ -145,7 +145,7 @@ const char* PyTriangulation_get_neighbors__doc__ =
145
145
" --\n\n "
146
146
" Return neighbors array" ;
147
147
148
- static PyObject* PyTriangulation_get_neighbors (PyTriangulation* self, PyObject* args, PyObject* kwds )
148
+ static PyObject* PyTriangulation_get_neighbors (PyTriangulation* self, PyObject* args)
149
149
{
150
150
Triangulation::NeighborArray* result;
151
151
CALL_CPP (" get_neighbors" , (result = &self->ptr ->get_neighbors ()));
@@ -429,7 +429,7 @@ const char* PyTrapezoidMapTriFinder_get_tree_stats__doc__ =
429
429
" \n "
430
430
" Return statistics about the tree used by the trapezoid map" ;
431
431
432
- static PyObject* PyTrapezoidMapTriFinder_get_tree_stats (PyTrapezoidMapTriFinder* self, PyObject* args, PyObject* kwds )
432
+ static PyObject* PyTrapezoidMapTriFinder_get_tree_stats (PyTrapezoidMapTriFinder* self, PyObject* args)
433
433
{
434
434
PyObject* result;
435
435
CALL_CPP (" get_tree_stats" , (result = self->ptr ->get_tree_stats ()));
@@ -441,7 +441,7 @@ const char* PyTrapezoidMapTriFinder_initialize__doc__ =
441
441
" \n "
442
442
" Initialize this object, creating the trapezoid map from the triangulation" ;
443
443
444
- static PyObject* PyTrapezoidMapTriFinder_initialize (PyTrapezoidMapTriFinder* self, PyObject* args, PyObject* kwds )
444
+ static PyObject* PyTrapezoidMapTriFinder_initialize (PyTrapezoidMapTriFinder* self, PyObject* args)
445
445
{
446
446
CALL_CPP (" initialize" , (self->ptr ->initialize ()));
447
447
Py_RETURN_NONE;
@@ -452,7 +452,7 @@ const char* PyTrapezoidMapTriFinder_print_tree__doc__ =
452
452
" \n "
453
453
" Print the search tree as text to stdout; useful for debug purposes" ;
454
454
455
- static PyObject* PyTrapezoidMapTriFinder_print_tree (PyTrapezoidMapTriFinder* self, PyObject* args, PyObject* kwds )
455
+ static PyObject* PyTrapezoidMapTriFinder_print_tree (PyTrapezoidMapTriFinder* self, PyObject* args)
456
456
{
457
457
CALL_CPP (" print_tree" , (self->ptr ->print_tree ()));
458
458
Py_RETURN_NONE;
0 commit comments