[Python-checkins] r47060 - python/trunk/Lib/sqlite3/test/userfunctions.py

gerhard.haering python-checkins at python.org
Wed Jun 21 22:55:04 CEST 2006


Author: gerhard.haering
Date: Wed Jun 21 22:55:04 2006
New Revision: 47060

Modified:
   python/trunk/Lib/sqlite3/test/userfunctions.py
Log:
Removed call to enable_callback_tracebacks that slipped in by accident.


Modified: python/trunk/Lib/sqlite3/test/userfunctions.py
==============================================================================
--- python/trunk/Lib/sqlite3/test/userfunctions.py	(original)
+++ python/trunk/Lib/sqlite3/test/userfunctions.py	Wed Jun 21 22:55:04 2006
@@ -365,7 +365,6 @@
 
 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);


More information about the Python-checkins mailing list