diff options
author | Gerhard Häring <gh@ghaering.de> | 2006-06-21 20:55:04 +0000 |
---|---|---|
committer | Gerhard Häring <gh@ghaering.de> | 2006-06-21 20:55:04 +0000 |
commit | 0d76002955a71dbf1aaffff378e6ac349551d3e9 (patch) | |
tree | 984a34c8289c289e8d93172eca7b864d41250242 /Lib/sqlite3/test | |
parent | 43c53d8969f29a22af002ffe4fec18d61849cc7b (diff) | |
download | cpython-0d76002955a71dbf1aaffff378e6ac349551d3e9.tar.gz |
Removed call to enable_callback_tracebacks that slipped in by accident.
Diffstat (limited to 'Lib/sqlite3/test')
-rw-r--r-- | Lib/sqlite3/test/userfunctions.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/sqlite3/test/userfunctions.py b/Lib/sqlite3/test/userfunctions.py index 215178c023..31bf289190 100644 --- a/Lib/sqlite3/test/userfunctions.py +++ b/Lib/sqlite3/test/userfunctions.py @@ -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); |