1
0
forked from VimPlug/jedi

Skip doctests that are just completion examples

This commit is contained in:
Aaron Meurer
2013-08-10 11:20:31 -06:00
parent 754835bec5
commit 5e81fc22e1

View File

@@ -34,13 +34,13 @@ def setup_readline():
The readline completer will only complete names in the global namespace, The readline completer will only complete names in the global namespace,
so for example, so for example,
>>> ran<TAB> >>> ran<TAB> # doctest: +SKIP
will complete to ``range`` will complete to ``range``
with both Jedi and readline, but with both Jedi and readline, but
>>> range(10).cou<TAB> >>> range(10).cou<TAB> # doctest: +SKIP
will show complete to ``range(10).count`` only with Jedi. will show complete to ``range(10).count`` only with Jedi.