DOC: Signal to doctest blank lines in the expected output

This commit is contained in:
Richard Frank
2016-03-23 18:26:42 -04:00
parent cd24d8ba55
commit d67c93c4ab
+3 -3
View File
@@ -187,13 +187,13 @@ def rolling_window(array, length):
>>> rolling_window(a, 2)
array([[[ 0, 1, 2, 3, 4],
[ 5, 6, 7, 8, 9]],
<BLANKLINE>
[[ 5, 6, 7, 8, 9],
[10, 11, 12, 13, 14]],
<BLANKLINE>
[[10, 11, 12, 13, 14],
[15, 16, 17, 18, 19]],
<BLANKLINE>
[[15, 16, 17, 18, 19],
[20, 21, 22, 23, 24]]])
"""