summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;