[issue26043] ON DELETE CASCADE does not work when using sqlite3 library

2016-01-07 Thread Vitaminus Maximus
Changes by Vitaminus Maximus : -- resolution: -> not a bug status: open -> closed ___ Python tracker <http://bugs.python.org/issue26043> ___ ___ Pyth

[issue26043] ON DELETE CASCADE does not work when using sqlite3 library

2016-01-07 Thread Vitaminus Maximus
New submission from Vitaminus Maximus: Let me provide a completely reproducible code, which demonstrates the issue: >>> import sqlite3 >>> cnx = sqlite3.connect("mytest.db") >>> cnx.isolation_level = None >>> cu