summaryrefslogtreecommitdiff
path: root/numpy/lib/arraysetops.py
diff options
context:
space:
mode:
authorcookedm <cookedm@localhost>2006-03-10 21:31:27 +0000
committercookedm <cookedm@localhost>2006-03-10 21:31:27 +0000
commitbf57380caa818b73a4c41409de6ff260425f9bb6 (patch)
treeb2c42e0fde172de5def0c91811845808c00e296e /numpy/lib/arraysetops.py
parentf2db317c1fad63f1c85944ba8443b465e32774dc (diff)
downloadnumpy-bf57380caa818b73a4c41409de6ff260425f9bb6.tar.gz
Run reindent.py (script distributed with Python) over the source to remove extraneous whitespace
Diffstat (limited to 'numpy/lib/arraysetops.py')
-rw-r--r--numpy/lib/arraysetops.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/arraysetops.py b/numpy/lib/arraysetops.py
index d1690d7d1..5b88acd6c 100644
--- a/numpy/lib/arraysetops.py
+++ b/numpy/lib/arraysetops.py
@@ -155,13 +155,13 @@ def test_unique1d_speed( plot_results = False ):
a = numpy.fix( nItem / 10 * numpy.random.random( nItem ) )
print 'dictionary:'
- tt = time.clock()
+ tt = time.clock()
b = numpy.unique( a )
dt1 = time.clock() - tt
print dt1
print 'array:'
- tt = time.clock()
+ tt = time.clock()
c = unique1d( a )
dt2 = time.clock() - tt
print dt2