aboutsummaryrefslogtreecommitdiff
path: root/src/pl/plpython/plpy_cursorobject.c
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2020-05-21 08:31:16 -0700
committerNoah Misch <noah@leadboat.com>2020-05-21 08:31:16 -0700
commit3350fb5d1f9d73de15428e9bfa83dce96421fc14 (patch)
tree1308a05515eb979bcd153ef12252d5459c545026 /src/pl/plpython/plpy_cursorobject.c
parente4db972ed5f12c09403ff0be24e12e5d4032aaaa (diff)
downloadpostgresql-3350fb5d1f9d73de15428e9bfa83dce96421fc14.tar.gz
postgresql-3350fb5d1f9d73de15428e9bfa83dce96421fc14.zip
Clear some style deviations.
Diffstat (limited to 'src/pl/plpython/plpy_cursorobject.c')
-rw-r--r--src/pl/plpython/plpy_cursorobject.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pl/plpython/plpy_cursorobject.c b/src/pl/plpython/plpy_cursorobject.c
index 4c37ff898c9..08d8b607e38 100644
--- a/src/pl/plpython/plpy_cursorobject.c
+++ b/src/pl/plpython/plpy_cursorobject.c
@@ -27,9 +27,7 @@ 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"
-};
+static char PLy_cursor_doc[] = "Wrapper around a PostgreSQL cursor";
static PyMethodDef PLy_cursor_methods[] = {
{"fetch", PLy_cursor_fetch, METH_VARARGS, NULL},