From b19f45533942e4ad7ddf9d2d94f8b87c6f746bce Mon Sep 17 00:00:00 2001 From: Erlend Egeberg Aasland Date: Thu, 24 Jun 2021 16:35:57 +0200 Subject: bpo-44491: Allow clearing the sqlite3 authoriser callback (GH-26863) --- Lib/sqlite3/test/dbapi.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Lib/sqlite3/test/dbapi.py') diff --git a/Lib/sqlite3/test/dbapi.py b/Lib/sqlite3/test/dbapi.py index 1a4b44188bd..20cca33e238 100644 --- a/Lib/sqlite3/test/dbapi.py +++ b/Lib/sqlite3/test/dbapi.py @@ -652,6 +652,7 @@ class ThreadTests(unittest.TestCase): lambda: self.con.rollback(), lambda: self.con.close(), lambda: self.con.set_trace_callback(None), + lambda: self.con.set_authorizer(None), lambda: self.con.create_collation("foo", None), ] for fn in fns: -- cgit v1.2.3