Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update crates/stdlib/src/sqlite.rs
  • Loading branch information
youknowone authored Nov 22, 2025
commit b2f3adf59d5b2f82fe55ff79b5d945de1edcfae4
2 changes: 1 addition & 1 deletion crates/stdlib/src/sqlite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ mod _sqlite {
detect_types: PyAtomic<c_int>,
isolation_level: PyAtomicRef<Option<PyStr>>,
check_same_thread: PyAtomic<bool>,
thread_ident: PyMutex<ThreadId>,
thread_ident: PyMutex<ThreadId>, // TODO: Use atomic
row_factory: PyAtomicRef<Option<PyObject>>,
text_factory: PyAtomicRef<PyObject>,
}
Expand Down
Loading