summaryrefslogtreecommitdiffstats
path: root/Modules/_sqlite/cursor.h
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-01-05 23:57:25 (GMT)
committerGitHub <noreply@github.com>2021-01-05 23:57:25 (GMT)
commitc7f8d3caf0b10c19cd46b1b334a98628eac15672 (patch)
treee0d852f3d30517719a3a76d63fe9c7bd686f6058 /Modules/_sqlite/cursor.h
parentdd74c01d3bd2833f72ffe400a1d10b8583c0ba6a (diff)
downloadcpython-c7f8d3caf0b10c19cd46b1b334a98628eac15672.zip
cpython-c7f8d3caf0b10c19cd46b1b334a98628eac15672.tar.gz
cpython-c7f8d3caf0b10c19cd46b1b334a98628eac15672.tar.bz2
bpo-40956: Convert _sqlite3.Cursor to Argument Clinic (GH-24007)
Diffstat (limited to 'Modules/_sqlite/cursor.h')
-rw-r--r--Modules/_sqlite/cursor.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/Modules/_sqlite/cursor.h b/Modules/_sqlite/cursor.h
index 3e6cde1..c79e355 100644
--- a/Modules/_sqlite/cursor.h
+++ b/Modules/_sqlite/cursor.h
@@ -54,15 +54,8 @@ typedef struct
extern PyTypeObject *pysqlite_CursorType;
-PyObject* pysqlite_cursor_execute(pysqlite_Cursor* self, PyObject* args);
-PyObject* pysqlite_cursor_executemany(pysqlite_Cursor* self, PyObject* args);
PyObject* pysqlite_cursor_getiter(pysqlite_Cursor *self);
PyObject* pysqlite_cursor_iternext(pysqlite_Cursor *self);
-PyObject* pysqlite_cursor_fetchone(pysqlite_Cursor* self, PyObject* args);
-PyObject* pysqlite_cursor_fetchmany(pysqlite_Cursor* self, PyObject* args, PyObject* kwargs);
-PyObject* pysqlite_cursor_fetchall(pysqlite_Cursor* self, PyObject* args);
-PyObject* pysqlite_noop(pysqlite_Connection* self, PyObject* args);
-PyObject* pysqlite_cursor_close(pysqlite_Cursor* self, PyObject* args);
int pysqlite_cursor_setup_types(PyObject *module);