1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-03 15:22:11 +03:00

PL/Python: Add argument names to function declarations

For easier source reading
This commit is contained in:
Peter Eisentraut
2011-12-29 22:55:49 +02:00
parent a671d9409b
commit f9de1e9a96
20 changed files with 104 additions and 104 deletions

View File

@@ -13,8 +13,8 @@
#include "plpy_elog.h"
static void PLy_plan_dealloc(PyObject *);
static PyObject *PLy_plan_status(PyObject *, PyObject *);
static void PLy_plan_dealloc(PyObject *arg);
static PyObject *PLy_plan_status(PyObject *self, PyObject *args);
static char PLy_plan_doc[] = {
"Store a PostgreSQL plan"