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

Thanks to Robert Xiao.
This commit is contained in:
Ross Lagerwall 2011-11-04 07:09:14 +02:00
parent 7ab4192e82
commit dcfde5aac9
2 changed files with 4 additions and 1 deletions

View File

@ -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.

View File

@ -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;