Commit 94809065 authored by Éloi Rivard's avatar Éloi Rivard Committed by GitHub

Merge pull request #132 from azmeuk/doc

Fixed tox 'docs' environment
parents 63823f71 d3f7cf1c
...@@ -385,7 +385,7 @@ Example ...@@ -385,7 +385,7 @@ Example
.. doctest:: .. doctest::
:options: +SKIP :options: +SKIP
>>> from BTrees.IIBTree import * >>> from BTrees.IIBTree import IISet
>>> s = IISet(range(10)) >>> s = IISet(range(10))
>>> list(s) >>> list(s)
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9] [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
...@@ -410,7 +410,7 @@ of the keys. Example ...@@ -410,7 +410,7 @@ of the keys. Example
.. doctest:: .. doctest::
>>> from BTrees.IIBTree import * >>> from BTrees.IIBTree import IISet
>>> s = IISet(range(10)) >>> s = IISet(range(10))
>>> for i in list(s.keys()): # this is well defined >>> for i in list(s.keys()): # this is well defined
... print(i) ... print(i)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment