[Python-checkins] cpython: Adds missing assert suppression.

steve.dower python-checkins at python.org
Sun Sep 11 23:19:50 EDT 2016


https://hg.python.org/cpython/rev/5c479bb0c31e
changeset:   103681:5c479bb0c31e
user:        Steve Dower <steve.dower at microsoft.com>
date:        Sun Sep 11 20:19:32 2016 -0700
summary:
  Adds missing assert suppression.

files:
  Modules/posixmodule.c |  4 ++++
  1 files changed, 4 insertions(+), 0 deletions(-)


diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -5030,11 +5030,13 @@
         mode = _P_OVERLAY;
 
     Py_BEGIN_ALLOW_THREADS
+    _Py_BEGIN_SUPPRESS_IPH
 #ifdef HAVE_WSPAWNV
     spawnval = _wspawnv(mode, path->wide, argvlist);
 #else
     spawnval = _spawnv(mode, path->narrow, argvlist);
 #endif
+    _Py_END_SUPPRESS_IPH
     Py_END_ALLOW_THREADS
 
     free_string_array(argvlist, argc);
@@ -5122,11 +5124,13 @@
         mode = _P_OVERLAY;
 
     Py_BEGIN_ALLOW_THREADS
+    _Py_BEGIN_SUPPRESS_IPH
 #ifdef HAVE_WSPAWNV
     spawnval = _wspawnve(mode, path->wide, argvlist, envlist);
 #else
     spawnval = _spawnve(mode, path->narrow, argvlist, envlist);
 #endif
+    _Py_END_SUPPRESS_IPH
     Py_END_ALLOW_THREADS
 
     if (spawnval == -1)

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list