[3.6] bpo-30650: Fixed a syntax error: missed right parentheses (GH-2154) (#2215)
(cherry picked from commit 0d32218
)
This commit is contained in:
parent
523a243840
commit
f75f6edb1f
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue