From e5991c8aa3040ab79d4a697554146f39667850fa Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Sun, 5 Apr 2015 16:52:58 +1000 Subject: [PATCH] Add missing comment '#' markers for doctest skip Dunno how these got through but when we start running these it's gonna fail dramatically! --- doc/source/user_guide/numpy_images.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/user_guide/numpy_images.txt b/doc/source/user_guide/numpy_images.txt index 3dab852a..40084f48 100644 --- a/doc/source/user_guide/numpy_images.txt +++ b/doc/source/user_guide/numpy_images.txt @@ -220,9 +220,9 @@ in a different order, even if the number of operations is the same: >>> im3d_t.shape (1024, 1024, 100) >>> s0 = time.time(); x = out_of_order_multiply(im3d, 5); s1 = time.time() - >>> print("%.2f seconds" % (s1 - s0)) doctest: +SKIP + >>> print("%.2f seconds" % (s1 - s0)) # doctest: +SKIP 1.18 seconds - >>> print("Speedup: %.1fx" % ((s1 - s0) / (t1 - t0))) doctest: +SKIP + >>> print("Speedup: %.1fx" % ((s1 - s0) / (t1 - t0))) # doctest: +SKIP Speedup: 8.6x