Metadata-Version: 1.1
Name: pysqlite3
-Version: 0.4.7
+Version: 0.4.8
Summary: DB-API 2.0 interface for Sqlite 3.x
Home-page: https://github.com/coleifer/pysqlite3
Author: Charles Leifer
Metadata-Version: 1.1
Name: pysqlite3
-Version: 0.4.7
+Version: 0.4.8
Summary: DB-API 2.0 interface for Sqlite 3.x
Home-page: https://github.com/coleifer/pysqlite3
Author: Charles Leifer
# If you need to change anything, it should be enough to change setup.cfg.
PACKAGE_NAME = 'pysqlite3'
-VERSION = '0.4.7'
+VERSION = '0.4.8'
# define sqlite sources
sources = [os.path.join('src', source)
aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*));
if (*aggregate_instance == NULL) {
- *aggregate_instance = _PyObject_CallNoArg(aggregate_class);
+ *aggregate_instance = PyObject_CallObject(aggregate_class, NULL);
if (PyErr_Occurred()) {
*aggregate_instance = 0;
PyGILState_STATE gilstate;
gilstate = PyGILState_Ensure();
- ret = _PyObject_CallNoArg((PyObject*)user_arg);
+ ret = PyObject_CallObject((PyObject*)user_arg, NULL);
if (!ret) {
if (_pysqlite_enable_callback_tracebacks) {
extern int pysqlite_prepare_protocol_setup_types(void)
{
+ int rc;
pysqlite_PrepareProtocolType.tp_new = PyType_GenericNew;
- Py_TYPE(&pysqlite_PrepareProtocolType)= &PyType_Type;
- return PyType_Ready(&pysqlite_PrepareProtocolType);
+ //Py_TYPE(&pysqlite_PrepareProtocolType)= &PyType_Type;
+ rc = PyType_Ready(&pysqlite_PrepareProtocolType);
+ return rc;
+ //return PyType_Ready(&pysqlite_PrepareProtocolType);
}