mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
bpo-43269: Remove redundant extern keywords (GH-24605)
This commit is contained in:
parent
4cf7bb8e22
commit
38b6c2acd4
6 changed files with 12 additions and 6 deletions
|
@ -480,7 +480,8 @@ static PyType_Spec stmt_spec = {
|
|||
};
|
||||
PyTypeObject *pysqlite_StatementType = NULL;
|
||||
|
||||
extern int pysqlite_statement_setup_types(PyObject *module)
|
||||
int
|
||||
pysqlite_statement_setup_types(PyObject *module)
|
||||
{
|
||||
pysqlite_StatementType = (PyTypeObject *)PyType_FromModuleAndSpec(module, &stmt_spec, NULL);
|
||||
if (pysqlite_StatementType == NULL) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue