Roundup Tracker - Issues

Message7864

Author rouilj
Recipients rouilj
Date 2023-11-21.04:00:03
Message-id <1700539204.69.0.782358322754.issue2551302@roundup.psfhosted.org>
In-reply-to
This includes:

 ...
 import sqlite as final fallback on import error

 if sqlite_version in (2, 3):
    arg = '?'
 else:
    arg = '%s'


 Removing self.sqlite_busy_handler and it's invocation

look for other checks against sqlite_version and eliminate sqlite 1 cases.
Also consider removing tests that match (2, 3) and just running the code
without an if test.

This cleans up untested code that is not usable these days.
History
Date User Action Args
2023-11-21 04:00:04rouiljsetrecipients: + rouilj
2023-11-21 04:00:04rouiljsetmessageid: <1700539204.69.0.782358322754.issue2551302@roundup.psfhosted.org>
2023-11-21 04:00:04rouiljlinkissue2551302 messages
2023-11-21 04:00:03rouiljcreate