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 erlendaasland, lyinch, ned.deily, ronaldoussoren
Date 2022-03-02.16:41:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1646239262.69.0.306921089358.issue46889@roundup.psfhosted.org>
In-reply-to
Content
FTR, here's 3.10 and 3.11 on my Mac, using the official Python.org installers:

    $ python3.10
    Python 3.10.2 (v3.10.2:a58ebcc701, Jan 13 2022, 14:50:16) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import sqlite3
    >>> cx = sqlite3.connect(":memory:")
    >>> cx.execute("select sin('1')").fetchone()
    (0.8414709848078965,)

    $ python3.11
    Python 3.11.0a5 (v3.11.0a5:c4e4b91557, Feb  3 2022, 14:54:01) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import sqlite3
    >>> cx = sqlite3.connect(":memory:")
    >>> cx.execute("select sin('1')").fetchone()
    (0.8414709848078965,)
History
Date User Action Args
2022-03-02 16:41:02erlendaaslandsetrecipients: + erlendaasland, ronaldoussoren, ned.deily, lyinch
2022-03-02 16:41:02erlendaaslandsetmessageid: <1646239262.69.0.306921089358.issue46889@roundup.psfhosted.org>
2022-03-02 16:41:02erlendaaslandlinkissue46889 messages
2022-03-02 16:41:02erlendaaslandcreate