diff options
author | Noah Misch <noah@leadboat.com> | 2020-05-21 08:31:16 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2020-05-21 08:31:16 -0700 |
commit | 3350fb5d1f9d73de15428e9bfa83dce96421fc14 (patch) | |
tree | 1308a05515eb979bcd153ef12252d5459c545026 /src/pl/plpython/plpy_cursorobject.c | |
parent | e4db972ed5f12c09403ff0be24e12e5d4032aaaa (diff) | |
download | postgresql-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.c | 4 |
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}, |