mirror of
https://github.com/postgres/postgres.git
synced 2025-07-18 17:42:25 +03:00
PL/Python: Add argument names to function declarations
For easier source reading
This commit is contained in:
@ -19,9 +19,9 @@
|
||||
List *explicit_subtransactions = NIL;
|
||||
|
||||
|
||||
static void PLy_subtransaction_dealloc(PyObject *);
|
||||
static PyObject *PLy_subtransaction_enter(PyObject *, PyObject *);
|
||||
static PyObject *PLy_subtransaction_exit(PyObject *, PyObject *);
|
||||
static void PLy_subtransaction_dealloc(PyObject *subxact);
|
||||
static PyObject *PLy_subtransaction_enter(PyObject *self, PyObject *unused);
|
||||
static PyObject *PLy_subtransaction_exit(PyObject *self, PyObject *args);
|
||||
|
||||
static char PLy_subtransaction_doc[] = {
|
||||
"PostgreSQL subtransaction context manager"
|
||||
|
Reference in New Issue
Block a user