@@ -32,7 +32,7 @@ const char *Py_point_in_path__doc__ =
3232 " point_in_path(x, y, radius, path, trans)\n "
3333 " --\n\n " ;
3434
35- static PyObject *Py_point_in_path (PyObject *self, PyObject *args, PyObject *kwds )
35+ static PyObject *Py_point_in_path (PyObject *self, PyObject *args)
3636{
3737 double x, y, r;
3838 py::PathIterator path;
@@ -64,7 +64,7 @@ const char *Py_points_in_path__doc__ =
6464 " points_in_path(points, radius, path, trans)\n "
6565 " --\n\n " ;
6666
67- static PyObject *Py_points_in_path (PyObject *self, PyObject *args, PyObject *kwds )
67+ static PyObject *Py_points_in_path (PyObject *self, PyObject *args)
6868{
6969 numpy::array_view<const double , 2 > points;
7070 double r;
@@ -95,7 +95,7 @@ const char *Py_point_on_path__doc__ =
9595 " point_on_path(x, y, radius, path, trans)\n "
9696 " --\n\n " ;
9797
98- static PyObject *Py_point_on_path (PyObject *self, PyObject *args, PyObject *kwds )
98+ static PyObject *Py_point_on_path (PyObject *self, PyObject *args)
9999{
100100 double x, y, r;
101101 py::PathIterator path;
@@ -127,7 +127,7 @@ const char *Py_points_on_path__doc__ =
127127 " points_on_path(points, radius, path, trans)\n "
128128 " --\n\n " ;
129129
130- static PyObject *Py_points_on_path (PyObject *self, PyObject *args, PyObject *kwds )
130+ static PyObject *Py_points_on_path (PyObject *self, PyObject *args)
131131{
132132 numpy::array_view<const double , 2 > points;
133133 double r;
@@ -158,7 +158,7 @@ const char *Py_get_path_extents__doc__ =
158158 " get_path_extents(path, trans)\n "
159159 " --\n\n " ;
160160
161- static PyObject *Py_get_path_extents (PyObject *self, PyObject *args, PyObject *kwds )
161+ static PyObject *Py_get_path_extents (PyObject *self, PyObject *args)
162162{
163163 py::PathIterator path;
164164 agg::trans_affine trans;
@@ -187,7 +187,7 @@ const char *Py_update_path_extents__doc__ =
187187 " update_path_extents(path, trans, rect, minpos, ignore)\n "
188188 " --\n\n " ;
189189
190- static PyObject *Py_update_path_extents (PyObject *self, PyObject *args, PyObject *kwds )
190+ static PyObject *Py_update_path_extents (PyObject *self, PyObject *args)
191191{
192192 py::PathIterator path;
193193 agg::trans_affine trans;
@@ -266,7 +266,7 @@ const char *Py_get_path_collection_extents__doc__ =
266266 " master_transform, paths, transforms, offsets, offset_transform)\n "
267267 " --\n\n " ;
268268
269- static PyObject *Py_get_path_collection_extents (PyObject *self, PyObject *args, PyObject *kwds )
269+ static PyObject *Py_get_path_collection_extents (PyObject *self, PyObject *args)
270270{
271271 agg::trans_affine master_transform;
272272 py::PathGenerator paths;
@@ -315,7 +315,7 @@ const char *Py_point_in_path_collection__doc__ =
315315 " offset_trans, filled)\n "
316316 " --\n\n " ;
317317
318- static PyObject *Py_point_in_path_collection (PyObject *self, PyObject *args, PyObject *kwds )
318+ static PyObject *Py_point_in_path_collection (PyObject *self, PyObject *args)
319319{
320320 double x, y, radius;
321321 agg::trans_affine master_transform;
@@ -370,7 +370,7 @@ const char *Py_path_in_path__doc__ =
370370 " path_in_path(path_a, trans_a, path_b, trans_b)\n "
371371 " --\n\n " ;
372372
373- static PyObject *Py_path_in_path (PyObject *self, PyObject *args, PyObject *kwds )
373+ static PyObject *Py_path_in_path (PyObject *self, PyObject *args)
374374{
375375 py::PathIterator a;
376376 agg::trans_affine atrans;
@@ -404,7 +404,7 @@ const char *Py_clip_path_to_rect__doc__ =
404404 " clip_path_to_rect(path, rect, inside)\n "
405405 " --\n\n " ;
406406
407- static PyObject *Py_clip_path_to_rect (PyObject *self, PyObject *args, PyObject *kwds )
407+ static PyObject *Py_clip_path_to_rect (PyObject *self, PyObject *args)
408408{
409409 py::PathIterator path;
410410 agg::rect_d rect;
@@ -431,7 +431,7 @@ const char *Py_affine_transform__doc__ =
431431 " affine_transform(points, trans)\n "
432432 " --\n\n " ;
433433
434- static PyObject *Py_affine_transform (PyObject *self, PyObject *args, PyObject *kwds )
434+ static PyObject *Py_affine_transform (PyObject *self, PyObject *args)
435435{
436436 PyObject *vertices_obj;
437437 agg::trans_affine trans;
@@ -472,7 +472,7 @@ const char *Py_count_bboxes_overlapping_bbox__doc__ =
472472 " count_bboxes_overlapping_bbox(bbox, bboxes)\n "
473473 " --\n\n " ;
474474
475- static PyObject *Py_count_bboxes_overlapping_bbox (PyObject *self, PyObject *args, PyObject *kwds )
475+ static PyObject *Py_count_bboxes_overlapping_bbox (PyObject *self, PyObject *args)
476476{
477477 agg::rect_d bbox;
478478 numpy::array_view<const double , 3 > bboxes;
@@ -614,7 +614,7 @@ const char *Py_cleanup_path__doc__ =
614614 " return_curves, sketch)\n "
615615 " --\n\n " ;
616616
617- static PyObject *Py_cleanup_path (PyObject *self, PyObject *args, PyObject *kwds )
617+ static PyObject *Py_cleanup_path (PyObject *self, PyObject *args)
618618{
619619 py::PathIterator path;
620620 agg::trans_affine trans;
@@ -721,7 +721,7 @@ const char *Py_convert_to_string__doc__ =
721721 " Whether the opcode comes after the values (True) or before (False).\n "
722722 ;
723723
724- static PyObject *Py_convert_to_string (PyObject *self, PyObject *args, PyObject *kwds )
724+ static PyObject *Py_convert_to_string (PyObject *self, PyObject *args)
725725{
726726 py::PathIterator path;
727727 agg::trans_affine trans;
0 commit comments