From efa1f8b993eaf6061e8b54a8f3dcd7089b709f48 Mon Sep 17 00:00:00 2001 From: Richard Belleville Date: Tue, 5 Mar 2019 16:11:05 -0800 Subject: [PATCH] Remove debug prints --- src/python/grpcio/commands.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/python/grpcio/commands.py b/src/python/grpcio/commands.py index d6353fc5a07..d189c2869d0 100644 --- a/src/python/grpcio/commands.py +++ b/src/python/grpcio/commands.py @@ -217,15 +217,12 @@ class BuildExt(build_ext.build_ext): """Test if default compiler is okay with specifying c++ version when invoked in C mode. GCC is okay with this, while clang is not. """ - print("Checking if compiler okay") cc_test = subprocess.Popen( ['cc', '-x', 'c', '-std=c++11', '-'], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - print("Attempting to communicate") _, cc_err = cc_test.communicate(input=b'int main(){return 0;}') - print("Completed with compiler") return not 'invalid argument' in str(cc_err) # This special conditioning is here due to difference of compiler