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 felixxm
Recipients berker.peksag, erlendaasland, felixxm
Date 2021-04-06.18:40:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1617734441.89.0.362920921767.issue43752@roundup.psfhosted.org>
In-reply-to
Content
A regression test:

    def test_convert_null_date(self):
        con = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_DECLTYPES)
        cur = con.cursor()
        cur.execute("CREATE TABLE t (x DATE NULL)")
        cur.execute("INSERT INTO t (x) VALUES (NULL)")
        cur.execute("SELECT * FROM t")
        values = [x[0] for x in cur.fetchall()]
        self.assertEqual(values, [None])
History
Date User Action Args
2021-04-06 18:40:41felixxmsetrecipients: + felixxm, berker.peksag, erlendaasland
2021-04-06 18:40:41felixxmsetmessageid: <1617734441.89.0.362920921767.issue43752@roundup.psfhosted.org>
2021-04-06 18:40:41felixxmlinkissue43752 messages
2021-04-06 18:40:41felixxmcreate