##// END OF EJS Templates
Remove some unhelpful info from IPython.core.completer
Thomas Kluyver -
Show More
@@ -80,6 +80,7 b' from IPython.core.error import TryNext'
80 80 from IPython.core.inputsplitter import ESC_MAGIC
81 81 from IPython.utils import generics
82 82 from IPython.utils import io
83 from IPython.utils.decorators import undoc
83 84 from IPython.utils.dir2 import dir2
84 85 from IPython.utils.process import arg_split
85 86 from IPython.utils.py3compat import builtin_mod, string_types
@@ -216,7 +217,7 b' def penalize_magics_key(word):'
216 217 return word
217 218
218 219
219
220 @undoc
220 221 class Bunch(object): pass
221 222
222 223
@@ -1010,9 +1011,6 b' class IPCompleter(Completer):'
1010 1011 def complete(self, text=None, line_buffer=None, cursor_pos=None):
1011 1012 """Find completions for the given text and line context.
1012 1013
1013 This is called successively with state == 0, 1, 2, ... until it
1014 returns None. The completion should begin with 'text'.
1015
1016 1014 Note that both the text and the line_buffer are optional, but at least
1017 1015 one of them must be given.
1018 1016
General Comments 0
You need to be logged in to leave comments. Login now