File tree Expand file tree Collapse file tree 5 files changed +0
-16
lines changed Expand file tree Collapse file tree 5 files changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -62,11 +62,6 @@ typedef struct
6262extern PyTypeObject * pysqlite_NodeType ;
6363extern PyTypeObject * pysqlite_CacheType ;
6464
65- int pysqlite_node_init (pysqlite_Node * self , PyObject * args , PyObject * kwargs );
66- void pysqlite_node_dealloc (pysqlite_Node * self );
67-
68- int pysqlite_cache_init (pysqlite_Cache * self , PyObject * args , PyObject * kwargs );
69- void pysqlite_cache_dealloc (pysqlite_Cache * self );
7065PyObject * pysqlite_cache_get (pysqlite_Cache * self , PyObject * args );
7166
7267int pysqlite_cache_setup_types (PyObject * module );
Original file line number Diff line number Diff line change @@ -108,11 +108,7 @@ typedef struct
108108
109109extern PyTypeObject * pysqlite_ConnectionType ;
110110
111- PyObject * pysqlite_connection_alloc (PyTypeObject * type , int aware );
112- void pysqlite_connection_dealloc (pysqlite_Connection * self );
113111PyObject * _pysqlite_connection_begin (pysqlite_Connection * self );
114- PyObject * pysqlite_connection_new (PyTypeObject * type , PyObject * args , PyObject * kw );
115- int pysqlite_connection_init (pysqlite_Connection * self , PyObject * args , PyObject * kwargs );
116112
117113int pysqlite_connection_register_cursor (pysqlite_Connection * connection , PyObject * cursor );
118114int pysqlite_check_thread (pysqlite_Connection * self );
Original file line number Diff line number Diff line change @@ -54,9 +54,6 @@ typedef struct
5454
5555extern PyTypeObject * pysqlite_CursorType ;
5656
57- PyObject * pysqlite_cursor_getiter (pysqlite_Cursor * self );
58- PyObject * pysqlite_cursor_iternext (pysqlite_Cursor * self );
59-
6057int pysqlite_cursor_setup_types (PyObject * module );
6158
6259#define UNKNOWN (-1)
Original file line number Diff line number Diff line change @@ -33,9 +33,6 @@ typedef struct
3333
3434extern PyTypeObject * pysqlite_PrepareProtocolType ;
3535
36- int pysqlite_prepare_protocol_init (pysqlite_PrepareProtocol * self , PyObject * args , PyObject * kwargs );
37- void pysqlite_prepare_protocol_dealloc (pysqlite_PrepareProtocol * self );
38-
3936int pysqlite_prepare_protocol_setup_types (PyObject * module );
4037
4138#define UNKNOWN (-1)
Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ typedef struct
4646extern PyTypeObject * pysqlite_StatementType ;
4747
4848int pysqlite_statement_create (pysqlite_Statement * self , pysqlite_Connection * connection , PyObject * sql );
49- void pysqlite_statement_dealloc (pysqlite_Statement * self );
5049
5150int pysqlite_statement_bind_parameter (pysqlite_Statement * self , int pos , PyObject * parameter );
5251void pysqlite_statement_bind_parameters (pysqlite_Statement * self , PyObject * parameters );
You can’t perform that action at this time.
0 commit comments