[3.6] bpo-30650: Fixed a syntax error: missed right parentheses (GH-2154) (#2215)

(cherry picked from commit 0d32218)
This commit is contained in:
Serhiy Storchaka 2017-06-15 16:57:53 +03:00 committed by GitHub
parent 523a243840
commit f75f6edb1f
1 changed files with 1 additions and 1 deletions

View File

@ -12756,7 +12756,7 @@ all_ins(PyObject *m)
if (PyModule_AddIntMacro(m, SCHED_RR)) return -1;
#endif
#ifdef SCHED_SPORADIC
if (PyModule_AddIntMacro(m, SCHED_SPORADIC) return -1;
if (PyModule_AddIntMacro(m, SCHED_SPORADIC)) return -1;
#endif
#ifdef SCHED_BATCH
if (PyModule_AddIntMacro(m, SCHED_BATCH)) return -1;