mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
bpo-42064: Remove stale extern declarations in sqlite3
headers (GH-26840)
This commit is contained in:
parent
e9c8f784fa
commit
019ad62afd
6 changed files with 0 additions and 24 deletions
|
@ -98,8 +98,6 @@ typedef struct
|
|||
PyObject* NotSupportedError;
|
||||
} pysqlite_Connection;
|
||||
|
||||
extern PyTypeObject *pysqlite_ConnectionType;
|
||||
|
||||
int pysqlite_connection_register_cursor(pysqlite_Connection* connection, PyObject* cursor);
|
||||
int pysqlite_check_thread(pysqlite_Connection* self);
|
||||
int pysqlite_check_connection(pysqlite_Connection* con);
|
||||
|
|
|
@ -52,8 +52,6 @@ typedef struct
|
|||
PyObject* in_weakreflist; /* List of weak references */
|
||||
} pysqlite_Cursor;
|
||||
|
||||
extern PyTypeObject *pysqlite_CursorType;
|
||||
|
||||
int pysqlite_cursor_setup_types(PyObject *module);
|
||||
|
||||
#define UNKNOWN (-1)
|
||||
|
|
|
@ -30,8 +30,6 @@ typedef struct
|
|||
PyObject_HEAD
|
||||
} pysqlite_PrepareProtocol;
|
||||
|
||||
extern PyTypeObject *pysqlite_PrepareProtocolType;
|
||||
|
||||
int pysqlite_prepare_protocol_setup_types(PyObject *module);
|
||||
|
||||
#define UNKNOWN (-1)
|
||||
|
|
|
@ -33,8 +33,6 @@ typedef struct _Row
|
|||
PyObject* description;
|
||||
} pysqlite_Row;
|
||||
|
||||
extern PyTypeObject *pysqlite_RowType;
|
||||
|
||||
int pysqlite_row_setup_types(PyObject *module);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -38,8 +38,6 @@ typedef struct
|
|||
PyObject* in_weakreflist; /* List of weak references */
|
||||
} pysqlite_Statement;
|
||||
|
||||
extern PyTypeObject *pysqlite_StatementType;
|
||||
|
||||
pysqlite_Statement *pysqlite_statement_create(pysqlite_Connection *connection, PyObject *sql);
|
||||
|
||||
int pysqlite_statement_bind_parameter(pysqlite_Statement* self, int pos, PyObject* parameter);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue