From 5e81fc22e1b4eb76fa1b4ea22847d010c04cc025 Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Sat, 10 Aug 2013 11:20:31 -0600 Subject: [PATCH] Skip doctests that are just completion examples --- jedi/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.