[Python-checkins] cpython (3.4): "Escape" a character in the middle of "warning"

zach.ware python-checkins at python.org
Wed Apr 23 19:18:00 CEST 2014


http://hg.python.org/cpython/rev/9c5c9d4ed9ba
changeset:   90445:9c5c9d4ed9ba
branch:      3.4
parent:      90442:2d1049ebb588
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Wed Apr 23 12:09:54 2014 -0500
summary:
  "Escape" a character in the middle of "warning"

This should stop Buildbot from falsely reporting a warning on Windows bots.

files:
  PCbuild/pythoncore.vcxproj |  16 ++++++++--------
  1 files changed, 8 insertions(+), 8 deletions(-)


diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj
--- a/PCbuild/pythoncore.vcxproj
+++ b/PCbuild/pythoncore.vcxproj
@@ -184,7 +184,7 @@
     <PreBuildEvent>
       <Command>$(KillPythonExe)
 IF %ERRORLEVEL% NEQ 0 (
-    echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+    echo kill_python: war^ning: could not kill running Pythons, exit code %ERRORLEVEL%
     exit /b 0
 )</Command>
     </PreBuildEvent>
@@ -219,7 +219,7 @@
     <PreBuildEvent>
       <Command>$(KillPythonExe)
 IF %ERRORLEVEL% NEQ 0 (
-    echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+    echo kill_python: war^ning: could not kill running Pythons, exit code %ERRORLEVEL%
     exit /b 0
 )</Command>
     </PreBuildEvent>
@@ -254,7 +254,7 @@
     <PreBuildEvent>
       <Command>$(KillPythonExe)
 IF %ERRORLEVEL% NEQ 0 (
-    echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+    echo kill_python: war^ning: could not kill running Pythons, exit code %ERRORLEVEL%
     exit /b 0
 )</Command>
     </PreBuildEvent>
@@ -292,7 +292,7 @@
     <PreBuildEvent>
       <Command>$(KillPythonExe)
 IF %ERRORLEVEL% NEQ 0 (
-    echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+    echo kill_python: war^ning: could not kill running Pythons, exit code %ERRORLEVEL%
     exit /b 0
 )</Command>
     </PreBuildEvent>
@@ -325,7 +325,7 @@
     <PreBuildEvent>
       <Command>$(KillPythonExe)
 IF %ERRORLEVEL% NEQ 0 (
-    echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+    echo kill_python: war^ning: could not kill running Pythons, exit code %ERRORLEVEL%
     exit /b 0
 )</Command>
     </PreBuildEvent>
@@ -361,7 +361,7 @@
     <PreBuildEvent>
       <Command>$(KillPythonExe)
 IF %ERRORLEVEL% NEQ 0 (
-    echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+    echo kill_python: war^ning: could not kill running Pythons, exit code %ERRORLEVEL%
     exit /b 0
 )</Command>
     </PreBuildEvent>
@@ -394,7 +394,7 @@
     <PreBuildEvent>
       <Command>$(KillPythonExe)
 IF %ERRORLEVEL% NEQ 0 (
-    echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+    echo kill_python: war^ning: could not kill running Pythons, exit code %ERRORLEVEL%
     exit /b 0
 )</Command>
     </PreBuildEvent>
@@ -430,7 +430,7 @@
     <PreBuildEvent>
       <Command>$(KillPythonExe)
 IF %ERRORLEVEL% NEQ 0 (
-    echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+    echo kill_python: war^ning: could not kill running Pythons, exit code %ERRORLEVEL%
     exit /b 0
 )</Command>
     </PreBuildEvent>

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


More information about the Python-checkins mailing list