Add missing comment '#' markers for doctest skip

Dunno how these got through but when we start running these it's gonna
fail dramatically!
This commit is contained in:
Juan Nunez-Iglesias
2015-04-05 16:52:58 +10:00
parent 7fbf2ab3f9
commit e5991c8aa3
+2 -2
View File
@@ -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