summaryrefslogtreecommitdiff
path: root/numpy/core
diff options
context:
space:
mode:
authorRaghuveer Devulapalli <raghuveer.devulapalli@intel.com>2021-06-11 20:55:50 -0700
committerRaghuveer Devulapalli <raghuveer.devulapalli@intel.com>2021-06-11 20:55:50 -0700
commit167a2c7cd95b821e3fcc464c4bc6582bf8b87443 (patch)
tree3fe9a3709e7cc8ca35b46b259bc1990602ad0c08 /numpy/core
parent1c7d5db66e0b80750e246d7bbfbd77de8c8ae524 (diff)
downloadnumpy-167a2c7cd95b821e3fcc464c4bc6582bf8b87443.tar.gz
TST: Getting rid of print
Diffstat (limited to 'numpy/core')
-rw-r--r--numpy/core/tests/test_umath.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/core/tests/test_umath.py b/numpy/core/tests/test_umath.py
index 555ed24b5..2378b11e9 100644
--- a/numpy/core/tests/test_umath.py
+++ b/numpy/core/tests/test_umath.py
@@ -19,11 +19,10 @@ from numpy.testing import (
)
def get_glibc_version():
- ver = '0.0'
try:
ver = os.confstr('CS_GNU_LIBC_VERSION').rsplit(' ')[1]
except Exception as inst:
- print(inst)
+ ver = '0.0'
return ver