Searched refs:blobopen (Results 1 – 6 of 6) sorted by relevance
/aosp_15_r20/external/python/cpython3/Lib/test/test_sqlite3/ |
D | test_dbapi.py | 1157 self.blob = self.cx.blobopen("test", "b", 1) 1258 ro_blob = self.cx.blobopen("test", "b", 1, readonly=True) 1274 self.cx.blobopen(*args, **kwds) 1408 with self.cx.blobopen("test", "b", 1) as blob: 1421 with self.cx.blobopen("test", "b", 1) as blob: 1429 blob = cx.blobopen("test", "b", 1) 1458 blob = cx.blobopen("test", "b", 1) 1470 cx.blobopen('t', 't', rowid) 1514 lambda: self.con.blobopen("test", "b", 1),
|
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/clinic/ |
D | connection.c.h | 161 {"blobopen", _PyCFunction_CAST(blobopen), METH_FASTCALL|METH_KEYWORDS, blobopen__doc__}, 168 blobopen(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in blobopen() function
|
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/ |
D | 3.11.4.rst | 347 Fix potential :exc:`OverflowError` in :meth:`sqlite3.Connection.blobopen`
|
D | 3.11.0b1.rst | 1704 Add :meth:`~sqlite3.Connection.blobopen` to :class:`sqlite3.Connection`.
|
/aosp_15_r20/external/python/cpython3/Doc/library/ |
D | sqlite3.rst | 568 .. method:: blobopen(table, column, row, /, *, readonly=False, name="main") 1597 with con.blobopen("test", "blob_col", 1) as blob: 1605 with con.blobopen("test", "blob_col", 1) as blob:
|
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/ |
D | 3.11.rst | 993 * Add :meth:`~sqlite3.Connection.blobopen` to :class:`sqlite3.Connection`.
|