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, christian.heimes, corona10, erlendaasland, serhiy.storchaka
Date 2021-02-25.13:09:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1614258559.61.0.0467161011859.issue43290@roundup.psfhosted.org>
In-reply-to
Content
>     int rc = sqlite3_reset(NULL);
>    printf("reset with NULL: %d %s\n", rc, sqlite3_errstr(rc));

Sorry, wrong test:

    int rc = sqlite3_step(NULL);
    printf("step with NULL: %d %s\n", rc, sqlite3_errstr(rc));

$ ./a.out
step with NULL: 21 bad parameter or other API misuse
History
Date User Action Args
2021-02-25 13:09:19erlendaaslandsetrecipients: + erlendaasland, christian.heimes, berker.peksag, serhiy.storchaka, corona10
2021-02-25 13:09:19erlendaaslandsetmessageid: <1614258559.61.0.0467161011859.issue43290@roundup.psfhosted.org>
2021-02-25 13:09:19erlendaaslandlinkissue43290 messages
2021-02-25 13:09:19erlendaaslandcreate