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 godlygeek
Recipients godlygeek, pablogsal, serhiy.storchaka, vstinner
Date 2021-09-29.23:38:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1632958700.89.0.0738133197056.issue45325@roundup.psfhosted.org>
In-reply-to
Content
I spotted three other uses in the stdlib:

Modules/_io/_iomodule.c

        raw = PyObject_CallFunction(RawIO_class, "OsOO",
                                    path_or_fd, rawmode,
                                    closefd ? Py_True : Py_False,
                                    opener);

    wrapper = PyObject_CallFunction((PyObject *)&PyTextIOWrapper_Type,
                                    "OsssO",
                                    buffer,
                                    encoding, errors, newline,
                                    line_buffering ? Py_True : Py_False);

Modules/_sqlite/connection.c

    if (PySys_Audit("sqlite3.enable_load_extension",
                    "OO", self, onoff ? Py_True : Py_False) < 0) {
        return NULL;
    }
History
Date User Action Args
2021-09-29 23:38:20godlygeeksetrecipients: + godlygeek, vstinner, serhiy.storchaka, pablogsal
2021-09-29 23:38:20godlygeeksetmessageid: <1632958700.89.0.0738133197056.issue45325@roundup.psfhosted.org>
2021-09-29 23:38:20godlygeeklinkissue45325 messages
2021-09-29 23:38:20godlygeekcreate