Navigation Menu

Skip to content

Commit

Permalink
[3.5] bpo-30650: Fixed a syntax error: missed right parentheses (GH-2154
Browse files Browse the repository at this point in the history
) (#2216)

(cherry picked from commit 0d32218)
  • Loading branch information
serhiy-storchaka committed Jun 15, 2017
1 parent 8c797ed commit b39c78a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/posixmodule.c
Expand Up @@ -12812,7 +12812,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;
Expand Down

0 comments on commit b39c78a

Please sign in to comment.