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

Skip to content

Commit ab1078b

Browse files
committed
(Merge 3.2) Issue #13339.
2 parents 6777e6f + dcfde5a commit ab1078b

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
@@ -350,6 +350,9 @@ Core and Builtins
350350
Library
351351
-------
352352

353+
- Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.
354+
Thanks to Robert Xiao.
355+
353356
- Byte compilation in packaging is now isolated from the calling Python -B or
354357
-O options, instead of being disallowed under -B or buggy under -O.
355358

Modules/posixmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4509,7 +4509,7 @@ search path to find the file.\n\
45094509
static PyObject *
45104510
posix_spawnvpe(PyObject *self, PyObject *args)
45114511
{
4512-
PyObject *opath
4512+
PyObject *opath;
45134513
char *path;
45144514
PyObject *argv, *env;
45154515
char **argvlist;

0 commit comments

Comments
 (0)