summaryrefslogtreecommitdiff
path: root/src/pl/plpython/plpy_cursorobject.h
diff options
context:
space:
mode:
authorPeter Eisentraut2011-12-29 20:55:49 +0000
committerPeter Eisentraut2011-12-29 20:55:49 +0000
commitf9de1e9a96a8e63bd4d3b9e615abd9cf6d8de703 (patch)
tree68c0a95b5715bf25d6e43102849af861d464dd03 /src/pl/plpython/plpy_cursorobject.h
parenta671d9409bfeac9ec5a622d74519fd1142a47274 (diff)
PL/Python: Add argument names to function declarations
For easier source reading
Diffstat (limited to 'src/pl/plpython/plpy_cursorobject.h')
-rw-r--r--src/pl/plpython/plpy_cursorobject.h2
1 files changed, 1 insertions, 1 deletions
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 */