Issue 13339: Missing semicolon at Modules/posixsubprocess.c:4511 (original) (raw)
Line 4511 of Modules/posixsubprocess.c is missing a semicolon, so it would not compile successfully if the relevant build flags were enabled (PYOS_OS2).
Trivial patch: @@ -4508,7 +4508,7 @@ static PyObject * posix_spawnvpe(PyObject *self, PyObject *args) {
- PyObject *opath
- PyObject *opath; char *path; PyObject *argv, *env; char **argvlist;
No tests needed since it's a compile error.