mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +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
|
@ -296,7 +296,8 @@ static PyType_Spec cache_spec = {
|
|||
};
|
||||
PyTypeObject *pysqlite_CacheType = NULL;
|
||||
|
||||
extern int pysqlite_cache_setup_types(PyObject *mod)
|
||||
int
|
||||
pysqlite_cache_setup_types(PyObject *mod)
|
||||
{
|
||||
pysqlite_NodeType = (PyTypeObject *)PyType_FromModuleAndSpec(mod, &node_spec, NULL);
|
||||
if (pysqlite_NodeType == NULL) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue