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 serhiy.storchaka
Recipients berker.peksag, ghaering, serhiy.storchaka
Date 2021-01-31.13:47:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1612100849.9.0.66215198535.issue43083@roundup.psfhosted.org>
In-reply-to
Content
There are few minor errors in the _sqlite3:

* In two places the result of PyList_Append() is not checked.
* The lastrowid field of pysqlite_Cursor can contain a reference to destroyed object when GIL is released for calling sqlite3_last_insert_rowid().
* Exception after PyDict_DelItem() in pysqlite_connection_create_collation_impl() is not cleared before calling _pysqlite_seterror() (and there is always an exception set if callable is None). Unlikely it can cause problems, but it is better to be explicit.
History
Date User Action Args
2021-01-31 13:47:29serhiy.storchakasetrecipients: + serhiy.storchaka, ghaering, berker.peksag
2021-01-31 13:47:29serhiy.storchakasetmessageid: <1612100849.9.0.66215198535.issue43083@roundup.psfhosted.org>
2021-01-31 13:47:29serhiy.storchakalinkissue43083 messages
2021-01-31 13:47:29serhiy.storchakacreate