diff options
author | Ross Lagerwall <rosslagerwall@gmail.com> | 2011-11-04 05:15:35 (GMT) |
---|---|---|
committer | Ross Lagerwall <rosslagerwall@gmail.com> | 2011-11-04 05:15:35 (GMT) |
commit | ab1078b987720c99a7d96b1ce915bc15c8749d64 (patch) | |
tree | 38377abebb50ae917bdcc9001094343bbab17b46 | |
parent | 6777e6f9b1d2756aa59c57b554395e5fc0a9f540 (diff) | |
parent | dcfde5aac99cd1ff7e43b75103feba44a453055a (diff) | |
download | cpython-ab1078b987720c99a7d96b1ce915bc15c8749d64.zip cpython-ab1078b987720c99a7d96b1ce915bc15c8749d64.tar.gz cpython-ab1078b987720c99a7d96b1ce915bc15c8749d64.tar.bz2 |
(Merge 3.2) Issue #13339.
-rw-r--r-- | Misc/NEWS | 3 | ||||
-rw-r--r-- | Modules/posixmodule.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -350,6 +350,9 @@ Core and Builtins Library ------- +- Issue #13339: Fix compile error in posixmodule.c due to missing semicolon. + Thanks to Robert Xiao. + - Byte compilation in packaging is now isolated from the calling Python -B or -O options, instead of being disallowed under -B or buggy under -O. diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index f4476b7..f7baad4 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -4509,7 +4509,7 @@ search path to find the file.\n\ static PyObject * posix_spawnvpe(PyObject *self, PyObject *args) { - PyObject *opath + PyObject *opath; char *path; PyObject *argv, *env; char **argvlist; |