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.
2 parents 6777e6f + dcfde5a commit ab1078bCopy full SHA for ab1078b
2 files changed
Misc/NEWS
@@ -350,6 +350,9 @@ Core and Builtins
350
Library
351
-------
352
353
+- Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.
354
+ Thanks to Robert Xiao.
355
+
356
- Byte compilation in packaging is now isolated from the calling Python -B or
357
-O options, instead of being disallowed under -B or buggy under -O.
358
Modules/posixmodule.c
@@ -4509,7 +4509,7 @@ search path to find the file.\n\
4509
static PyObject *
4510
posix_spawnvpe(PyObject *self, PyObject *args)
4511
{
4512
- PyObject *opath
+ PyObject *opath;
4513
char *path;
4514
PyObject *argv, *env;
4515
char **argvlist;
0 commit comments