This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nneonneo
Recipients nneonneo
Date 2011-11-04.04:34:22
SpamBayes Score 8.872866e-06
Marked as misclassified No
Message-id <1320381264.57.0.354485296745.issue13339@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2011-11-04 04:34:24nneonneosetrecipients: + nneonneo
2011-11-04 04:34:24nneonneosetmessageid: <1320381264.57.0.354485296745.issue13339@psf.upfronthosting.co.za>
2011-11-04 04:34:23nneonneolinkissue13339 messages
2011-11-04 04:34:22nneonneocreate