[issue26187] sqlite3 trace callback prints duplicate line

2017-04-09 Thread Berker Peksag
Berker Peksag added the comment: Thanks, Anish and Aviv! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue26187] sqlite3 trace callback prints duplicate line

2017-04-09 Thread Berker Peksag
Berker Peksag added the comment: New changeset 0e6cb2ea624570ed08c354f1ed1f595dab4192d6 by Berker Peksag (Aviv Palivoda) in branch 'master': bpo-26187: Test that set_trace_callback() is not called multiple times (GH-461)

[issue26187] sqlite3 trace callback prints duplicate line

2017-03-04 Thread Aviv Palivoda
Changes by Aviv Palivoda : -- pull_requests: +384 ___ Python tracker ___ ___

[issue26187] sqlite3 trace callback prints duplicate line

2017-03-03 Thread Berker Peksag
Changes by Berker Peksag : -- stage: test needed -> patch review ___ Python tracker ___

[issue26187] sqlite3 trace callback prints duplicate line

2017-03-03 Thread Anish Shah
Changes by Anish Shah : -- pull_requests: +360 ___ Python tracker ___ ___

[issue26187] sqlite3 trace callback prints duplicate line

2017-03-03 Thread Anish Shah
Anish Shah added the comment: I can work on this. -- nosy: +anish.shah ___ Python tracker ___ ___

[issue26187] sqlite3 trace callback prints duplicate line

2017-03-03 Thread Berker Peksag
Berker Peksag added the comment: It would be nice to add a test case to https://github.com/python/cpython/blob/86a670543ff97d52fd9b8ca0477f8b6d27ee946d/Lib/sqlite3/test/hooks.py#L204 before closing this. -- nosy: +berker.peksag stage: -> test needed versions: +Python 3.7 -Python 3.4,

[issue26187] sqlite3 trace callback prints duplicate line

2016-04-30 Thread Aviv Palivoda
Aviv Palivoda added the comment: This issue will be resolved when we change the sqlite3_prepare to sqlite3_prepare_v2. So there should be a dependency on issue 9303. -- ___ Python tracker

[issue26187] sqlite3 trace callback prints duplicate line

2016-01-23 Thread Aviv Palivoda
New submission from Aviv Palivoda: I am running the following script: -- >>> import sqlite3 >>> import os >>> import time >>> con1 = sqlite3.connect("/tmp/test.db") >>> con2 = sqlite3.connect("/tmp/test.db") >>> con1.set_trace_callback(print) >>> cur =