Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Lib/test/test_sqlite3/test_dbapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,6 @@ def test_extended_error_code_on_exception(self):
sqlite.SQLITE_CONSTRAINT_CHECK)
self.assertEqual(exc.sqlite_errorname, "SQLITE_CONSTRAINT_CHECK")

# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_disallow_instantiation(self):
cx = sqlite.connect(":memory:")
check_disallow_instantiation(self, type(cx("select 1")))
Expand Down
14 changes: 9 additions & 5 deletions stdlib/src/sqlite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ mod _sqlite {
sliceable::{SaturatedSliceIter, SliceableSequenceOp},
types::{
AsMapping, AsSequence, Callable, Comparable, Constructor, Hashable, IterNext, Iterable,
PyComparisonOp, SelfIter,
PyComparisonOp, SelfIter, Unconstructible,
},
utils::ToCString,
};
Expand Down Expand Up @@ -2036,14 +2036,16 @@ mod _sqlite {
}

#[pyattr]
#[pyclass(name, traverse)]
#[pyclass(module = "sqlite3", name = "Blob", traverse)]
#[derive(Debug, PyPayload)]
struct Blob {
connection: PyRef<Connection>,
#[pytraverse(skip)]
inner: PyMutex<Option<BlobInner>>,
}

impl Unconstructible for Blob {}

#[derive(Debug)]
struct BlobInner {
blob: SqliteBlob,
Expand All @@ -2056,7 +2058,7 @@ mod _sqlite {
}
}

#[pyclass(with(AsMapping))]
#[pyclass(with(AsMapping, Unconstructible))]
impl Blob {
#[pymethod]
fn close(&self) {
Expand Down Expand Up @@ -2356,7 +2358,7 @@ mod _sqlite {
impl PrepareProtocol {}

#[pyattr]
#[pyclass(name)]
#[pyclass(module = "sqlite3", name = "Statement")]
#[derive(PyPayload)]
struct Statement {
st: PyMutex<SqliteStatement>,
Expand All @@ -2373,7 +2375,9 @@ mod _sqlite {
}
}

#[pyclass()]
impl Unconstructible for Statement {}

#[pyclass(with(Unconstructible))]
impl Statement {
fn new(
connection: &Connection,
Expand Down
2 changes: 1 addition & 1 deletion vm/src/types/slot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ pub trait DefaultConstructor: PyPayload + Default {
pub trait Unconstructible: PyPayload {
#[pyslot]
fn slot_new(cls: PyTypeRef, _args: FuncArgs, vm: &VirtualMachine) -> PyResult {
Err(vm.new_type_error(format!("cannot create {} instances", cls.slot_name())))
Err(vm.new_type_error(format!("cannot create '{}' instances", cls.slot_name())))
}
}

Expand Down
Loading