diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-12-29 22:55:49 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-12-29 22:55:49 +0200 |
commit | f9de1e9a96a8e63bd4d3b9e615abd9cf6d8de703 (patch) | |
tree | 68c0a95b5715bf25d6e43102849af861d464dd03 /src/pl/plpython/plpy_subxactobject.c | |
parent | a671d9409bfeac9ec5a622d74519fd1142a47274 (diff) |
PL/Python: Add argument names to function declarations
For easier source reading
Diffstat (limited to 'src/pl/plpython/plpy_subxactobject.c')
-rw-r--r-- | src/pl/plpython/plpy_subxactobject.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pl/plpython/plpy_subxactobject.c b/src/pl/plpython/plpy_subxactobject.c index 6c3cc69adfa..9feeddb7231 100644 --- a/src/pl/plpython/plpy_subxactobject.c +++ b/src/pl/plpython/plpy_subxactobject.c @@ -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" |