summaryrefslogtreecommitdiff
path: root/numpy/lib/shape_base.py
diff options
context:
space:
mode:
authorSebastian Berg <sebastian@sipsolutions.net>2013-06-06 14:59:50 +0200
committerSebastian Berg <sebastian@sipsolutions.net>2013-06-09 17:00:47 +0200
commita6a2c601c28687e8ff8b44f5319280b20a9c3f71 (patch)
treeb6066041de856eaed70c440078073ca7e65502f4 /numpy/lib/shape_base.py
parent0e9dccd0b8375a487b435411eb58f00d5d4a8bdc (diff)
downloadnumpy-a6a2c601c28687e8ff8b44f5319280b20a9c3f71.tar.gz
STY: Style fixes for integer deprecation changes
Also minor changes in the documentation.
Diffstat (limited to 'numpy/lib/shape_base.py')
-rw-r--r--numpy/lib/shape_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/shape_base.py b/numpy/lib/shape_base.py
index f8734ea5e..c63f8140d 100644
--- a/numpy/lib/shape_base.py
+++ b/numpy/lib/shape_base.py
@@ -830,5 +830,5 @@ def tile(A, reps):
dim_in = shape[i]
dim_out = dim_in*nrep
shape[i] = dim_out
- n //= max(dim_in,1)
+ n //= max(dim_in, 1)
return c.reshape(shape)