]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Removed call to enable_callback_tracebacks that slipped in by accident.
authorGerhard Häring <gh@ghaering.de>
Wed, 21 Jun 2006 20:55:04 +0000 (20:55 +0000)
committerGerhard Häring <gh@ghaering.de>
Wed, 21 Jun 2006 20:55:04 +0000 (20:55 +0000)
Lib/sqlite3/test/userfunctions.py

index 215178c02398f4245a663b1c8de08e3ffdcae0ce..31bf289190ee0bcc7c6194ccbf4d3706d4afdea0 100644 (file)
@@ -365,7 +365,6 @@ def authorizer_cb(action, arg1, arg2, dbname, source):
 
 class AuthorizerTests(unittest.TestCase):
     def setUp(self):
-        sqlite.enable_callback_tracebacks(1)
         self.con = sqlite.connect(":memory:")
         self.con.executescript("""
             create table t1 (c1, c2);