[Python-checkins] Make TaskStepMethWrapper_Type and TaskWakeupMethWrapper_Type static. (GH-8127)

Benjamin Peterson webhook-mailer at python.org
Fri Jul 6 01:39:39 EDT 2018


https://github.com/python/cpython/commit/3c8aae9ffe13d0f2ad4ff81cdf56bc6393af362a
commit: 3c8aae9ffe13d0f2ad4ff81cdf56bc6393af362a
branch: master
author: Benjamin Peterson <benjamin at python.org>
committer: GitHub <noreply at github.com>
date: 2018-07-05T22:39:34-07:00
summary:

Make TaskStepMethWrapper_Type and TaskWakeupMethWrapper_Type static. (GH-8127)

files:
M Modules/_asynciomodule.c

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),



More information about the Python-checkins mailing list