Kaydet (Commit) ab1078b9 authored tarafından Ross Lagerwall's avatar Ross Lagerwall

(Merge 3.2) Issue #13339.

......@@ -350,6 +350,9 @@ Core and Builtins
Library
-------
- Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.
Thanks to Robert Xiao.
- Byte compilation in packaging is now isolated from the calling Python -B or
-O options, instead of being disallowed under -B or buggy under -O.
......
......@@ -4509,7 +4509,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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment