mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 06:44:46 +08:00
Skip doctests that are just completion examples
This commit is contained in:
@@ -34,13 +34,13 @@ def setup_readline():
|
||||
The readline completer will only complete names in the global namespace,
|
||||
so for example,
|
||||
|
||||
>>> ran<TAB>
|
||||
>>> ran<TAB> # doctest: +SKIP
|
||||
|
||||
will complete to ``range``
|
||||
|
||||
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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user