##// END OF EJS Templates
completer.py => core/completer.py and imports updated.
Brian Granger -
Show More
@@ -0,0 +1,6 b''
1 #!/usr/bin/env python
2 # encoding: utf-8
3
4 def test_import_completer():
5 from IPython.core import completer
6
@@ -69,7 +69,7 b' def main():'
69 69 import IPython.rlineimpl as readline
70 70 readline.set_completer_delims(" \n\t")
71 71 # monkeypatch - the code will be folded to normal completer later on
72 import IPython.completer
73 IPython.completer.Completer.attr_matches = attr_matches
72 import IPython.core.completer
73 IPython.core.completer.Completer.attr_matches = attr_matches
74 74
75 75 main() No newline at end of file
1 NO CONTENT: file renamed from IPython/completer.py to IPython/core/completer.py
@@ -1423,7 +1423,7 b' class InteractiveShell(object,Magic):'
1423 1423 else:
1424 1424 sys.modules['readline'] = readline
1425 1425 import atexit
1426 from IPython.completer import IPCompleter
1426 from IPython.core.completer import IPCompleter
1427 1427 self.Completer = IPCompleter(self,
1428 1428 self.user_ns,
1429 1429 self.user_global_ns,
@@ -85,8 +85,13 b' level modules.'
85 85 Where things will be moved
86 86 ==========================
87 87
88 * :file:`background_jobs.py`. Move to :file:`IPython/lib/backgroundjobs.py`.
89
88 90 * :file:`ColorANSI.py`. Move to :file:`IPython/utils/coloransi.py`.
89 91
92 * :file:`completer.py`. Move to :file:`IPython/core/completer.py`.
93
94
90 95 * :file:`ConfigLoader.py`. Move to :file:`IPython/config/configloader.py`.
91 96
92 97 * :file:`CrashHandler.py`. Move to :file:`IPython/core/crashhandler`.
@@ -130,9 +135,8 b' Where things will be moved'
130 135
131 136 * :file:`UserConfig`. Move to a subdirectory of :file:`IPython.config`.
132 137
133 * :file:`background_jobs.py`. Move to :file:`IPython/lib/backgroundjobs.py`.
134 138
135 * :file:`completer.py`. Move to :file:`IPython/core/completer.py`.
139
136 140
137 141 * :file:`config`. Good where it is!
138 142
General Comments 0
You need to be logged in to leave comments. Login now