summaryrefslogtreecommitdiff
path: root/Lib/sqlite3/test/userfunctions.py
diff options
context:
space:
mode:
authorGerhard Häring <gh@ghaering.de>2006-06-21 20:55:04 +0000
committerGerhard Häring <gh@ghaering.de>2006-06-21 20:55:04 +0000
commitf92b9c21edd77356179050549465e58276cad532 (patch)
tree3e3100733a87ffdb87f2737da054633e58f002ed /Lib/sqlite3/test/userfunctions.py
parent0870687f449140ad2620af5b6f5f44896e8c1cd5 (diff)
downloadcpython-git-f92b9c21edd77356179050549465e58276cad532.tar.gz
Removed call to enable_callback_tracebacks that slipped in by accident.
Diffstat (limited to 'Lib/sqlite3/test/userfunctions.py')
-rw-r--r--Lib/sqlite3/test/userfunctions.py1
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);