This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author erlendaasland
Recipients berker.peksag, erlendaasland, pablogsal, serhiy.storchaka
Date 2021-08-20.18:05:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1629482733.71.0.100234486152.issue44958@roundup.psfhosted.org>
In-reply-to
Content
I did a quick count of sqlite3_reset()s in the sqlite3 test suite:
- main:     2976 calls
- PR 27844: 1730 calls

Since we never call sqlite3_reset() with a NULL pointer, all sqlite3_reset() calls we execute hold the SQLite db mutex; reducing the number of sqlite3_reset() calls reduces the number of times we need to hold the mutex.
History
Date User Action Args
2021-08-20 18:05:33erlendaaslandsetrecipients: + erlendaasland, berker.peksag, serhiy.storchaka, pablogsal
2021-08-20 18:05:33erlendaaslandsetmessageid: <1629482733.71.0.100234486152.issue44958@roundup.psfhosted.org>
2021-08-20 18:05:33erlendaaslandlinkissue44958 messages
2021-08-20 18:05:33erlendaaslandcreate