From: Benjamin Peterson Date: Fri, 6 Jul 2018 05:39:34 +0000 (-0700) Subject: Make TaskStepMethWrapper_Type and TaskWakeupMethWrapper_Type static. (GH-8127) X-Git-Tag: v3.8.0a1~1432 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3c8aae9ffe13d0f2ad4ff81cdf56bc6393af362a;p=thirdparty%2FPython%2Fcpython.git Make TaskStepMethWrapper_Type and TaskWakeupMethWrapper_Type static. (GH-8127) --- diff --git a/Modules/_asynciomodule.c b/Modules/_asynciomodule.c index e3537cc81c4c..ebda10404eb5 100644 --- a/Modules/_asynciomodule.c +++ b/Modules/_asynciomodule.c @@ -1738,7 +1738,7 @@ static PyGetSetDef TaskStepMethWrapper_getsetlist[] = { {NULL} /* Sentinel */ }; -PyTypeObject TaskStepMethWrapper_Type = { +static PyTypeObject TaskStepMethWrapper_Type = { PyVarObject_HEAD_INIT(NULL, 0) "TaskStepMethWrapper", .tp_basicsize = sizeof(TaskStepMethWrapper), @@ -1813,7 +1813,7 @@ TaskWakeupMethWrapper_dealloc(TaskWakeupMethWrapper *o) Py_TYPE(o)->tp_free(o); } -PyTypeObject TaskWakeupMethWrapper_Type = { +static PyTypeObject TaskWakeupMethWrapper_Type = { PyVarObject_HEAD_INIT(NULL, 0) "TaskWakeupMethWrapper", .tp_basicsize = sizeof(TaskWakeupMethWrapper),