Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dcfde5a

Browse files
committed
Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.
Thanks to Robert Xiao.
1 parent 7ab4192 commit dcfde5a

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

Misc/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ Core and Builtins
6666
Library
6767
-------
6868

69+
- Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.
70+
Thanks to Robert Xiao.
71+
6972
- Issue #10570: curses.putp() and curses.tigetstr() are now expecting a byte
7073
string, instead of a Unicode string.
7174

Modules/posixmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4001,7 +4001,7 @@ search path to find the file.\n\
40014001
static PyObject *
40024002
posix_spawnvpe(PyObject *self, PyObject *args)
40034003
{
4004-
PyObject *opath
4004+
PyObject *opath;
40054005
char *path;
40064006
PyObject *argv, *env;
40074007
char **argvlist;

0 commit comments

Comments
 (0)