Skip to content

Commit b4411c3

Browse files
committed
remove a debugging print statement that spammed the terminal, bug 450807
1 parent a73de47 commit b4411c3

3 files changed

Lines changed: 1 addition & 3 deletions

File tree

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
include quantities/constants/NIST_codata.txt
22
include quantities/tests/*.py
3-
include quantities/umath/tests/*.py

quantities/quantity.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,6 @@ def __array_prepare__(self, obj, context=None):
227227

228228
def __array_wrap__(self, obj, context=None):
229229
if not isinstance(obj, Quantity):
230-
print obj, type(obj)
231230
# backwards compatibility with numpy-1.3
232231
obj = self.__array_prepare__(obj, context)
233232
return obj

quantities/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
__version__ = '0.5.0'
2+
__version__ = '0.5.1'

0 commit comments

Comments
 (0)