bpo-30650: Fixed a syntax error: missed right parentheses (#2154)

This commit is contained in:
messi Liao 2017-06-13 22:30:43 +08:00 committed by Serhiy Storchaka
parent 4563099d28
commit 0d322181d9
1 changed files with 1 additions and 1 deletions

View File

@ -12935,7 +12935,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;