Commit 5f6727e3 authored by Ross Lagerwall's avatar Ross Lagerwall

Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.

Thanks to Robert Xiao.
parent fb9a1a8f
...@@ -66,6 +66,9 @@ Core and Builtins ...@@ -66,6 +66,9 @@ Core and Builtins
Library 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 - Issue #10570: curses.putp() and curses.tigetstr() are now expecting a byte
string, instead of a Unicode string. string, instead of a Unicode string.
......
...@@ -4001,7 +4001,7 @@ search path to find the file.\n\ ...@@ -4001,7 +4001,7 @@ search path to find the file.\n\
static PyObject * static PyObject *
posix_spawnvpe(PyObject *self, PyObject *args) posix_spawnvpe(PyObject *self, PyObject *args)
{ {
PyObject *opath PyObject *opath;
char *path; char *path;
PyObject *argv, *env; PyObject *argv, *env;
char **argvlist; char **argvlist;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment