##// END OF EJS Templates
Moving tests/test_magic.py and support files to core/tests.
Brian Granger -
Show More
1 NO CONTENT: file renamed from IPython/tests/obj_del.py to IPython/core/tests/obj_del.py
1 NO CONTENT: file renamed from IPython/tests/refbug.py to IPython/core/tests/refbug.py
1 NO CONTENT: file renamed from IPython/tests/tclass.py to IPython/core/tests/tclass.py
@@ -74,7 +74,7 b' def test_shist():'
74 74 import os, shutil, tempfile
75 75
76 76 from IPython.Extensions import pickleshare
77 from IPython.history import ShadowHist
77 from IPython.core.history import ShadowHist
78 78
79 79 tfile = tempfile.mktemp('','tmp-ipython-')
80 80
@@ -87,6 +87,8 b' Need to update the top level IPython/__init__.py file.'
87 87 Where things will be moved
88 88 ==========================
89 89
90 Top-level modules:
91
90 92 * :file:`background_jobs.py`. Move to :file:`IPython/lib/backgroundjobs.py`.
91 93
92 94 * :file:`ColorANSI.py`. Move to :file:`IPython/utils/coloransi.py`.
@@ -186,18 +188,29 b' Where things will be moved'
186 188
187 189 * :file:`strdispatch.py`. Move to :file:`IPython.python`.
188 190
191 * :file:`twshell.py`. Move to :file:`IPython.sandbox`.
192
193 * :file:`ultraTB.py`. Move to :file:`IPython/core/ultratb.py`.
194
195 * :file:`upgrade_dir.py`. Move to :file:`IPython/utils/upgradedir.py`.
196
197 * :file:`usage.py`. Move to :file:`IPython.core`.
198
199 * :file:`wildcard.py`. Move to :file:`IPython.utils`.
200
201 * :file:`winconsole.py`. Move to :file:`IPython.utils`.
202
203 Top-level sub-packages:
204
189 205 * :file:`testing`. Good where it is.
190 206
191 207 * :file:`tests`. Good where it is.
192 208
193 209 * :file:`tools`. Things in here need to be looked at and moved elsewhere like
194 :file:`IPython.python`.
210 :file:`IPython.utils`.
195 211
196 212 * :file:`UserConfig`. Move to a subdirectory of :file:`IPython.config`.
197 213
198
199
200
201 214 * :file:`config`. Good where it is!
202 215
203 216 * :file:`external`. Good where it is!
@@ -209,16 +222,6 b' Where things will be moved'
209 222 * :file:`gui`. Eventually this should be moved to a subdir of
210 223 :file:`IPython.frontend`.
211 224
212
213
214
215
216
217
218
219
220
221
222 225 * :file:`kernel`. Good where it is.
223 226
224 227
@@ -235,17 +238,7 b' Where things will be moved'
235 238
236 239
237 240
238 * :file:`twshell.py`. Move to :file:`IPython.sandbox`.
239
240 * :file:`ultraTB.py`. Move to :file:`IPython/core/ultratb.py`.
241
242 * :file:`upgrade_dir.py`. Move to :file:`IPython/utils/upgradedir.py`.
243
244 * :file:`usage.py`. Move to :file:`IPython.core`.
245
246 * :file:`wildcard.py`. Move to :file:`IPython.utils`.
247 241
248 * :file:`winconsole.py`. Move to :file:`IPython.lib`.
249 242
250 243 Other things
251 244 ============
General Comments 0
You need to be logged in to leave comments. Login now