[issue13339] Missing semicolon at Modules/posixsubprocess.c:4511

Robert Xiao report at bugs.python.org
Fri Nov 4 05:34:24 CET 2011


New submission from Robert Xiao <nneonneo at gmail.com>:

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.

----------
components: Extension Modules
messages: 146995
nosy: nneonneo
priority: normal
severity: normal
status: open
title: Missing semicolon at Modules/posixsubprocess.c:4511
type: compile error
versions: Python 3.1, Python 3.2, Python 3.3, Python 3.4

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue13339>
_______________________________________


More information about the Python-bugs-list mailing list