diff options
-rw-r--r-- | Misc/NEWS | 3 | ||||
-rw-r--r-- | Modules/posixmodule.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -66,6 +66,9 @@ Core and Builtins Library ------- +- Issue #13339: Fix compile error in posixmodule.c due to missing semicolon. + Thanks to Robert Xiao. + - Issue #10570: curses.putp() and curses.tigetstr() are now expecting a byte string, instead of a Unicode string. diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 702fec0cdf..a27ac7111d 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -4001,7 +4001,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; |