bpo-40956: Convert _sqlite3 module level functions to Argument Clinic (GH-22484)

This commit is contained in:
Erlend Egeberg Aasland 2020-10-31 07:07:44 +01:00 committed by GitHub
parent bcbf758476
commit 7d21027157
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 313 additions and 88 deletions

View file

@ -44,9 +44,4 @@ extern int pysqlite_microprotocols_add(
extern PyObject *pysqlite_microprotocols_adapt(
PyObject *obj, PyObject *proto, PyObject *alt);
extern PyObject *
pysqlite_adapt(pysqlite_Cursor* self, PyObject *args);
#define pysqlite_adapt_doc \
"adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard."
#endif /* !defined(PSYCOPG_MICROPROTOCOLS_H) */