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_subxactobject.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/pl/plpython/plpy_subxactobject.c') 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" -- cgit v1.2.3