From f9de1e9a96a8e63bd4d3b9e615abd9cf6d8de703 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 29 Dec 2011 22:55:49 +0200 Subject: PL/Python: Add argument names to function declarations For easier source reading --- src/pl/plpython/plpy_cursorobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pl/plpython/plpy_cursorobject.h') diff --git a/src/pl/plpython/plpy_cursorobject.h b/src/pl/plpython/plpy_cursorobject.h index 706134ea2c7..1dd9d48fd58 100644 --- a/src/pl/plpython/plpy_cursorobject.h +++ b/src/pl/plpython/plpy_cursorobject.h @@ -17,6 +17,6 @@ typedef struct PLyCursorObject } PLyCursorObject; extern void PLy_cursor_init_type(void); -extern PyObject *PLy_cursor(PyObject *, PyObject *); +extern PyObject *PLy_cursor(PyObject *self, PyObject *args); #endif /* PLPY_CURSOROBJECT_H */ -- cgit v1.2.3