Searched refs:new_list (Results 1 – 2 of 2) sorted by relevance
302 new_list = list308 return new_list, msg309 new_list = []312 new_list.append(func)317 new_list = list[:count]320 new_list = list[:count]321 if len(list) != len(new_list):323 len(list), len(new_list), sel)325 return new_list, msg
786 PyObject* new_list; in _pysqlite_drop_unused_statement_references() local797 new_list = PyList_New(0); in _pysqlite_drop_unused_statement_references()798 if (!new_list) { in _pysqlite_drop_unused_statement_references()805 if (PyList_Append(new_list, weakref) != 0) { in _pysqlite_drop_unused_statement_references()806 Py_DECREF(new_list); in _pysqlite_drop_unused_statement_references()813 self->statements = new_list; in _pysqlite_drop_unused_statement_references()818 PyObject* new_list; in _pysqlite_drop_unused_cursor_references() local829 new_list = PyList_New(0); in _pysqlite_drop_unused_cursor_references()830 if (!new_list) { in _pysqlite_drop_unused_cursor_references()837 if (PyList_Append(new_list, weakref) != 0) { in _pysqlite_drop_unused_cursor_references()[all …]