]> granicus.if.org Git - python/commitdiff
Make two PyModuleDef_Slot symbols static in _testmultiphase. (GH-8147)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 7 Jul 2018 04:32:54 +0000 (21:32 -0700)
committerGitHub <noreply@github.com>
Sat, 7 Jul 2018 04:32:54 +0000 (21:32 -0700)
(cherry picked from commit cb4bae72c965ce946e0fdb48db67c73afdcb5649)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
Modules/_testmultiphase.c

index 43f8034e8e9b58bcf25a35d3c42d550047084916..6b18859a4667bc4b763c00090c4616a70c821dfc 100644 (file)
@@ -237,7 +237,7 @@ static int execfunc(PyObject *m)
 
 #define TEST_MODULE_DEF(name, slots, methods) TEST_MODULE_DEF_EX(name, slots, methods, 0, NULL)
 
-PyModuleDef_Slot main_slots[] = {
+static PyModuleDef_Slot main_slots[] = {
     {Py_mod_exec, execfunc},
     {0, NULL},
 };
@@ -487,7 +487,7 @@ createfunc_null(PyObject *spec, PyModuleDef *def)
     return NULL;
 }
 
-PyModuleDef_Slot slots_create_null[] = {
+static PyModuleDef_Slot slots_create_null[] = {
     {Py_mod_create, createfunc_null},
     {0, NULL},
 };