Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab4192 commit dcfde5aCopy full SHA for dcfde5a
2 files changed
Misc/NEWS
@@ -66,6 +66,9 @@ Core and Builtins
66
Library
67
-------
68
69
+- Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.
70
+ Thanks to Robert Xiao.
71
+
72
- Issue #10570: curses.putp() and curses.tigetstr() are now expecting a byte
73
string, instead of a Unicode string.
74
Modules/posixmodule.c
@@ -4001,7 +4001,7 @@ search path to find the file.\n\
4001
static PyObject *
4002
posix_spawnvpe(PyObject *self, PyObject *args)
4003
{
4004
- PyObject *opath
+ PyObject *opath;
4005
char *path;
4006
PyObject *argv, *env;
4007
char **argvlist;
0 commit comments