diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2013-06-06 14:59:50 +0200 |
---|---|---|
committer | Sebastian Berg <sebastian@sipsolutions.net> | 2013-06-09 17:00:47 +0200 |
commit | a6a2c601c28687e8ff8b44f5319280b20a9c3f71 (patch) | |
tree | b6066041de856eaed70c440078073ca7e65502f4 /numpy/lib/shape_base.py | |
parent | 0e9dccd0b8375a487b435411eb58f00d5d4a8bdc (diff) | |
download | numpy-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.py | 2 |
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) |