##// END OF EJS Templates
history.py => core/history.py and imports updated.py
Brian Granger -
Show More
@@ -21,4 +21,4 b' import clearcmd # %clear'
21 21
22 22 import ipy_stock_completers
23 23
24 ip.load('IPython.history')
24 ip.load('IPython.core.history')
1 NO CONTENT: file renamed from IPython/history.py to IPython/core/history.py
@@ -58,7 +58,7 b' from IPython.lib.backgroundjobs import BackgroundJobManager'
58 58 from IPython.utils.genutils import *
59 59 from IPython.strdispatch import StrDispatch
60 60 import IPython.ipapi
61 import IPython.history
61 import IPython.core.history
62 62 import IPython.prefilter as prefilter
63 63 import IPython.shadowns
64 64 # Globals
@@ -832,7 +832,7 b' class InteractiveShell(object,Magic):'
832 832 print r"only has ASCII characters, e.g. c:\home"
833 833 print "Now it is",rc.ipythondir
834 834 sys.exit()
835 self.shadowhist = IPython.history.ShadowHist(self.db)
835 self.shadowhist = IPython.core.history.ShadowHist(self.db)
836 836
837 837 def post_config_initialization(self):
838 838 """Post configuration init method
@@ -116,16 +116,22 b' Where things will be moved'
116 116
117 117 * :file:`genutils.py`. Move to :file:`IPython.utils`.
118 118
119 * :file:`Extensions`. This needs to be gone through separately. Minimally,
120 the package should be renamed to :file:`extensions`.
121
122
123 119 * :file:`Gnuplot2.py`. Move to :file:`IPython.sandbox`.
124 120
125 121 * :file:`GnuplotInteractive.py`. Move to :file:`IPython.sandbox`.
126 122
127 123 * :file:`GnuplotRuntime.py`. Move to :file:`IPython.sandbox`.
128 124
125 * :file:`numutils.py`. Move to :file:`IPython.sandbox`.
126
127 * :file:`twshell.py`. Move to :file:`IPython.sandbox`.
128
129 * :file:`Extensions`. This needs to be gone through separately. Minimally,
130 the package should be renamed to :file:`extensions`.
131
132 * :file:`history.py`. Move to :file:`IPython.core`.
133
134
129 135 * :file:`Itpl.py`. Remove. Version already in :file:`IPython.external`.
130 136
131 137 * :file:`Logger.py`. Move to :file:`IPython/core/logger.py`.
@@ -164,7 +170,7 b' Where things will be moved'
164 170 * :file:`gui`. Eventually this should be moved to a subdir of
165 171 :file:`IPython.frontend`.
166 172
167 * :file:`history.py`. Move to :file:`IPython.core`.
173
168 174
169 175 * :file:`hooks.py`. Move to :file:`IPython.core`.
170 176
@@ -182,7 +188,7 b' Where things will be moved'
182 188
183 189 * :file:`macro.py`. Move to :file:`IPython.core`.
184 190
185 * :file:`numutils.py`. Move to :file:`IPython.sandbox`.
191
186 192
187 193 * :file:`platutils.py`. Move to :file:`IPython.python`.
188 194
General Comments 0
You need to be logged in to leave comments. Login now