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

Miss Islington (bot) webhook-mailer at python.org
Fri Jul 6 01:58:30 EDT 2018


https://github.com/python/cpython/commit/60214dd2d5829f47f2e38a7cdd073e7a5e611905
commit: 60214dd2d5829f47f2e38a7cdd073e7a5e611905
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-07-05T22:58:27-07:00
summary:

Make TaskStepMethWrapper_Type and TaskWakeupMethWrapper_Type static. (GH-8127)

(cherry picked from commit 3c8aae9ffe13d0f2ad4ff81cdf56bc6393af362a)

Co-authored-by: Benjamin Peterson <benjamin at python.org>

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