diff options
| author | neonene <53406459+neonene@users.noreply.github.com> | 2024-04-16 09:52:45 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-16 09:52:45 (GMT) |
| commit | c520bf9bdf77d43c3d5d95bd08e856759a2abc86 (patch) | |
| tree | 9b488b1b76dd1320ddcd9597c7e8620659c45161 /Modules/_sqlite | |
| parent | 1316692e8c7c1e1f3b6639e51804f9db5ed892ea (diff) | |
| download | cpython-c520bf9bdf77d43c3d5d95bd08e856759a2abc86.zip cpython-c520bf9bdf77d43c3d5d95bd08e856759a2abc86.tar.gz cpython-c520bf9bdf77d43c3d5d95bd08e856759a2abc86.tar.bz2 | |
gh-117613: Argument Clinic: ensure that 'defining_class' params are positional-only (#117781)
Diffstat (limited to 'Modules/_sqlite')
| -rw-r--r-- | Modules/_sqlite/clinic/connection.c.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/_sqlite/clinic/connection.c.h b/Modules/_sqlite/clinic/connection.c.h index 811314b..bb0a027 100644 --- a/Modules/_sqlite/clinic/connection.c.h +++ b/Modules/_sqlite/clinic/connection.c.h @@ -744,7 +744,7 @@ pysqlite_connection_set_authorizer(pysqlite_Connection *self, PyTypeObject *cls, PyObject *return_value = NULL; #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE) - #define NUM_KEYWORDS 2 + #define NUM_KEYWORDS 1 static struct { PyGC_Head _this_is_not_used; PyObject_VAR_HEAD @@ -837,7 +837,7 @@ pysqlite_connection_set_progress_handler(pysqlite_Connection *self, PyTypeObject PyObject *return_value = NULL; #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE) - #define NUM_KEYWORDS 3 + #define NUM_KEYWORDS 2 static struct { PyGC_Head _this_is_not_used; PyObject_VAR_HEAD @@ -925,7 +925,7 @@ pysqlite_connection_set_trace_callback(pysqlite_Connection *self, PyTypeObject * PyObject *return_value = NULL; #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE) - #define NUM_KEYWORDS 2 + #define NUM_KEYWORDS 1 static struct { PyGC_Head _this_is_not_used; PyObject_VAR_HEAD @@ -1866,4 +1866,4 @@ exit: #ifndef DESERIALIZE_METHODDEF #define DESERIALIZE_METHODDEF #endif /* !defined(DESERIALIZE_METHODDEF) */ -/*[clinic end generated code: output=3c6d0b748fac016f input=a9049054013a1b77]*/ +/*[clinic end generated code: output=7d41a178b7b2b683 input=a9049054013a1b77]*/ |
