From e56a09af9e696129b92e7487bccbc3713568fc5b Mon Sep 17 00:00:00 2001 From: Tim Leslie Date: Tue, 9 Jan 2007 04:45:31 +0000 Subject: clean up unused imports and bad whitespace --- numpy/lib/shape_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/lib/shape_base.py') diff --git a/numpy/lib/shape_base.py b/numpy/lib/shape_base.py index 250525f76..cb15a2760 100644 --- a/numpy/lib/shape_base.py +++ b/numpy/lib/shape_base.py @@ -568,7 +568,7 @@ def kron(a,b): nd = nda result = outer(a,b).reshape(as_+bs) axis = nd-1 - for k in xrange(nd): + for _ in xrange(nd): result = concatenate(result, axis=axis) if wrapper is not None: result = wrapper(result) -- cgit v1.2.1