mirror of
https://github.com/postgres/postgres.git
synced 2025-08-18 12:22:09 +03:00
PL/Python: Add argument names to function declarations
For easier source reading
This commit is contained in:
@@ -20,12 +20,12 @@
|
||||
#include "plpy_spi.h"
|
||||
|
||||
|
||||
static PyObject *PLy_cursor_query(const char *);
|
||||
static PyObject *PLy_cursor_plan(PyObject *, PyObject *);
|
||||
static void PLy_cursor_dealloc(PyObject *);
|
||||
static PyObject *PLy_cursor_iternext(PyObject *);
|
||||
static PyObject *PLy_cursor_fetch(PyObject *, PyObject *);
|
||||
static PyObject *PLy_cursor_close(PyObject *, PyObject *);
|
||||
static PyObject *PLy_cursor_query(const char *query);
|
||||
static PyObject *PLy_cursor_plan(PyObject *ob, PyObject *args);
|
||||
static void PLy_cursor_dealloc(PyObject *arg);
|
||||
static PyObject *PLy_cursor_iternext(PyObject *self);
|
||||
static PyObject *PLy_cursor_fetch(PyObject *self, PyObject *args);
|
||||
static PyObject *PLy_cursor_close(PyObject *self, PyObject *unused);
|
||||
|
||||
static char PLy_cursor_doc[] = {
|
||||
"Wrapper around a PostgreSQL cursor"
|
||||
|
Reference in New Issue
Block a user