diff --git a/jedi/utils.py b/jedi/utils.py index 704ab8ed..cd8b0c48 100644 --- a/jedi/utils.py +++ b/jedi/utils.py @@ -34,13 +34,13 @@ def setup_readline(): The readline completer will only complete names in the global namespace, so for example, - >>> ran + >>> ran # doctest: +SKIP will complete to ``range`` with both Jedi and readline, but - >>> range(10).cou + >>> range(10).cou # doctest: +SKIP will show complete to ``range(10).count`` only with Jedi.