diff options
-rw-r--r-- | lib_pypy/_sqlite3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_pypy/_sqlite3.py b/lib_pypy/_sqlite3.py index dd9f37e38f..ab87b576d1 100644 --- a/lib_pypy/_sqlite3.py +++ b/lib_pypy/_sqlite3.py @@ -396,7 +396,7 @@ class Connection(object): for weakref in lst: statement = weakref() if statement is not None: - statement._reset() + statement._force_reset() @_check_thread_wrap @_check_closed_wrap |