Skip to content

Commit

Permalink
Improved consistency of doctest comments in rpyc/__init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
comrumino committed Oct 28, 2022
1 parent 1bf8e1b commit b1c35df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rpyc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
None
>>> print(c.eval("x + 2"))
7
>>> print(c.modules.os.listdir(".")) #doctest: +ELLIPSIS
>>> print(c.modules.os.listdir(".")) # doctest: +ELLIPSIS
[...]
>>> print(c.modules["xml.dom.minidom"].parseString("<a/>")) #doctest: +ELLIPSIS
>>> print(c.modules["xml.dom.minidom"].parseString("<a/>")) # doctest: +ELLIPSIS
<xml.dom.minidom.Document instance at ...>
>>> f = c.builtin.open("foobar.txt", "rb") #doctest: +SKIP
>>> print(f.read(100)) #doctest: +SKIP
>>> f = c.builtin.open("foobar.txt", "rb") # doctest: +SKIP
>>> print(f.read(100)) # doctest: +SKIP
...
"""
Expand Down

0 comments on commit b1c35df

Please sign in to comment.