From 8179816626dcbaae9a5e7a10491ad292fb5cd226 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Tue, 17 May 2016 19:55:44 -0500 Subject: [PATCH] Re-fix doctest tracking prior commit --- doc/tutorial.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorial.rst b/doc/tutorial.rst index 1bdf70c29..9d525605b 100644 --- a/doc/tutorial.rst +++ b/doc/tutorial.rst @@ -227,9 +227,9 @@ inspect that code, too, using :attr:`loopy.Options.write_wrapper`: <BLANKLINE> if n is None: if a is not None: - n = int(a.shape[0]) + n = a.shape[0] elif out is not None: - n = int(out.shape[0]) + n = out.shape[0] <BLANKLINE> # }}} ... -- GitLab