mirror of
https://github.com/python/cpython.git
synced 2026-01-28 05:35:31 +00:00
gh-69093: Don't allow instantiation of sqlite3.Blob objects (GH-91570)
This commit is contained in:
parent
72965981d1
commit
d104f4d21f
@ -356,6 +356,7 @@ class ModuleTests(unittest.TestCase):
|
||||
def test_disallow_instantiation(self):
|
||||
cx = sqlite.connect(":memory:")
|
||||
check_disallow_instantiation(self, type(cx("select 1")))
|
||||
check_disallow_instantiation(self, sqlite.Blob)
|
||||
|
||||
def test_complete_statement(self):
|
||||
self.assertFalse(sqlite.complete_statement("select t"))
|
||||
|
||||
@ -334,7 +334,7 @@ static PyType_Spec blob_spec = {
|
||||
.name = MODULE_NAME ".Blob",
|
||||
.basicsize = sizeof(pysqlite_Blob),
|
||||
.flags = (Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
|
||||
Py_TPFLAGS_IMMUTABLETYPE),
|
||||
Py_TPFLAGS_IMMUTABLETYPE | Py_TPFLAGS_DISALLOW_INSTANTIATION),
|
||||
.slots = blob_slots,
|
||||
};
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user