mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
gh-69093: Don't allow instantiation of sqlite3.Blob objects (GH-91570)
This commit is contained in:
parent
72965981d1
commit
d104f4d21f
2 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue