[Python-checkins] cpython (merge 3.2 -> default): (Merge 3.2) Issue #13339.

ross.lagerwall python-checkins at python.org
Fri Nov 4 06:15:26 CET 2011


http://hg.python.org/cpython/rev/9e5d14aadca4
changeset:   73343:9e5d14aadca4
parent:      73341:5aea95d41ad2
parent:      73342:fa9c69dcf31b
user:        Ross Lagerwall <rosslagerwall at gmail.com>
date:        Fri Nov 04 07:15:35 2011 +0200
summary:
  (Merge 3.2) Issue #13339.

files:
  Misc/NEWS             |  3 +++
  Modules/posixmodule.c |  2 +-
  2 files changed, 4 insertions(+), 1 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -350,6 +350,9 @@
 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
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -4509,7 +4509,7 @@
 static PyObject *
 posix_spawnvpe(PyObject *self, PyObject *args)
 {
-    PyObject *opath
+    PyObject *opath;
     char *path;
     PyObject *argv, *env;
     char **argvlist;

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list