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 veky
Recipients alex.henrie, veky
Date 2020-02-01.05:50:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1580536234.72.0.0446835949858.issue39496@roundup.psfhosted.org>
In-reply-to
Content
You mean, something like

    while ((row = pysqlite_cursor_iternext(self))) {
            PyList_Append(list, row);
            Py_DECREF(row);
    }

? It's interesting that now we have walrus in Python, we see the opportunities for it in other languages. (In C, it's spelled (=).:)
History
Date User Action Args
2020-02-01 05:50:34vekysetrecipients: + veky, alex.henrie
2020-02-01 05:50:34vekysetmessageid: <1580536234.72.0.0446835949858.issue39496@roundup.psfhosted.org>
2020-02-01 05:50:34vekylinkissue39496 messages
2020-02-01 05:50:34vekycreate