summaryrefslogtreecommitdiffstats
path: root/Modules/_sqlite/row.c
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-02-21 10:07:49 (GMT)
committerGitHub <noreply@github.com>2021-02-21 10:07:49 (GMT)
commit38b6c2acd4bba666bd64779c42b9d91cbee19274 (patch)
tree97c4460259dbe1ab1576c8f195513f9af87d1d3e /Modules/_sqlite/row.c
parent4cf7bb8e22bf37e6d65bf4cb5618d09c4a8ad612 (diff)
downloadcpython-38b6c2acd4bba666bd64779c42b9d91cbee19274.zip
cpython-38b6c2acd4bba666bd64779c42b9d91cbee19274.tar.gz
cpython-38b6c2acd4bba666bd64779c42b9d91cbee19274.tar.bz2
bpo-43269: Remove redundant extern keywords (GH-24605)
Diffstat (limited to 'Modules/_sqlite/row.c')
-rw-r--r--Modules/_sqlite/row.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/_sqlite/row.c b/Modules/_sqlite/row.c
index 97a5a17..f9dfcbd 100644
--- a/Modules/_sqlite/row.c
+++ b/Modules/_sqlite/row.c
@@ -243,7 +243,8 @@ static PyType_Spec row_spec = {
PyTypeObject *pysqlite_RowType = NULL;
-extern int pysqlite_row_setup_types(PyObject *module)
+int
+pysqlite_row_setup_types(PyObject *module)
{
pysqlite_RowType = (PyTypeObject *)PyType_FromModuleAndSpec(module, &row_spec, NULL);
if (pysqlite_RowType == NULL) {