mirror of
https://github.com/python/cpython.git
synced 2025-09-29 19:56:59 +00:00
[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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue