summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Lagerwall <rosslagerwall@gmail.com>2011-11-04 05:15:35 (GMT)
committerRoss Lagerwall <rosslagerwall@gmail.com>2011-11-04 05:15:35 (GMT)
commitab1078b987720c99a7d96b1ce915bc15c8749d64 (patch)
tree38377abebb50ae917bdcc9001094343bbab17b46
parent6777e6f9b1d2756aa59c57b554395e5fc0a9f540 (diff)
parentdcfde5aac99cd1ff7e43b75103feba44a453055a (diff)
downloadcpython-ab1078b987720c99a7d96b1ce915bc15c8749d64.zip
cpython-ab1078b987720c99a7d96b1ce915bc15c8749d64.tar.gz
cpython-ab1078b987720c99a7d96b1ce915bc15c8749d64.tar.bz2
(Merge 3.2) Issue #13339.
-rw-r--r--Misc/NEWS3
-rw-r--r--Modules/posixmodule.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 12b3447..3a87990 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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;