From: Gerhard Häring Date: Wed, 21 Jun 2006 20:55:04 +0000 (+0000) Subject: Removed call to enable_callback_tracebacks that slipped in by accident. X-Git-Tag: v2.5b2~143 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f92b9c21edd77356179050549465e58276cad532;p=thirdparty%2FPython%2Fcpython.git Removed call to enable_callback_tracebacks that slipped in by accident. --- diff --git a/Lib/sqlite3/test/userfunctions.py b/Lib/sqlite3/test/userfunctions.py index 215178c02398..31bf289190ee 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);