summaryrefslogtreecommitdiffstats
path: root/Lib/sqlite3
diff options
context:
space:
mode:
authorGerhard Häring <gh@ghaering.de>2006-06-21 20:55:04 (GMT)
committerGerhard Häring <gh@ghaering.de>2006-06-21 20:55:04 (GMT)
commitf92b9c21edd77356179050549465e58276cad532 (patch)
tree3e3100733a87ffdb87f2737da054633e58f002ed /Lib/sqlite3
parent0870687f449140ad2620af5b6f5f44896e8c1cd5 (diff)
downloadcpython-f92b9c21edd77356179050549465e58276cad532.zip
cpython-f92b9c21edd77356179050549465e58276cad532.tar.gz
cpython-f92b9c21edd77356179050549465e58276cad532.tar.bz2
Removed call to enable_callback_tracebacks that slipped in by accident.
Diffstat (limited to 'Lib/sqlite3')
-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 215178c..31bf289 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);