From 562ce0c586020075ecfda58536fae042eb1315df Mon Sep 17 00:00:00 2001 From: David Hendriks <davidhendriks93@gmail.com> Date: Mon, 27 Jan 2020 20:40:17 +0000 Subject: [PATCH] removed prints --- setup.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/setup.py b/setup.py index c0cde9879..326e16359 100644 --- a/setup.py +++ b/setup.py @@ -86,17 +86,17 @@ runtime_library_dirs = [ ] + binary_c_libdirs # TODO: move the creeation of all the include stuff to here so its easier to print everything -print('\n') -print("binary_c_config: ", str(binary_c_config) + "\n") -print("incdirs: ", str(include_dirs) + "\n") -print("binary_c_libs: ", str(binary_c_libs) + "\n") -print("libraries: ", str(libraries) + "\n") -print("library_dirs: ", str(library_dirs) + "\n") -print("runtime_library_dirs: ", str(runtime_library_dirs) + "\n") -print("binary_c_cflags: ", str(binary_c_cflags) + "\n") -print("API_h: ", str(API_h) + "\n") -print("macros: ", str(binary_c_define_macros) + "\n") -print('\n') +# print('\n') +# print("binary_c_config: ", str(binary_c_config) + "\n") +# print("incdirs: ", str(include_dirs) + "\n") +# print("binary_c_libs: ", str(binary_c_libs) + "\n") +# print("libraries: ", str(libraries) + "\n") +# print("library_dirs: ", str(library_dirs) + "\n") +# print("runtime_library_dirs: ", str(runtime_library_dirs) + "\n") +# print("binary_c_cflags: ", str(binary_c_cflags) + "\n") +# print("API_h: ", str(API_h) + "\n") +# print("macros: ", str(binary_c_define_macros) + "\n") +# print('\n') binary_c_python_api_module = Extension( # name="binarycpython.core.binary_c", -- GitLab