##// 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 import ipy_stock_completers
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
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 from IPython.utils.genutils import *
58 from IPython.utils.genutils import *
59 from IPython.strdispatch import StrDispatch
59 from IPython.strdispatch import StrDispatch
60 import IPython.ipapi
60 import IPython.ipapi
61 import IPython.history
61 import IPython.core.history
62 import IPython.prefilter as prefilter
62 import IPython.prefilter as prefilter
63 import IPython.shadowns
63 import IPython.shadowns
64 # Globals
64 # Globals
@@ -832,7 +832,7 b' class InteractiveShell(object,Magic):'
832 print r"only has ASCII characters, e.g. c:\home"
832 print r"only has ASCII characters, e.g. c:\home"
833 print "Now it is",rc.ipythondir
833 print "Now it is",rc.ipythondir
834 sys.exit()
834 sys.exit()
835 self.shadowhist = IPython.history.ShadowHist(self.db)
835 self.shadowhist = IPython.core.history.ShadowHist(self.db)
836
836
837 def post_config_initialization(self):
837 def post_config_initialization(self):
838 """Post configuration init method
838 """Post configuration init method
@@ -116,16 +116,22 b' Where things will be moved'
116
116
117 * :file:`genutils.py`. Move to :file:`IPython.utils`.
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 * :file:`Gnuplot2.py`. Move to :file:`IPython.sandbox`.
119 * :file:`Gnuplot2.py`. Move to :file:`IPython.sandbox`.
124
120
125 * :file:`GnuplotInteractive.py`. Move to :file:`IPython.sandbox`.
121 * :file:`GnuplotInteractive.py`. Move to :file:`IPython.sandbox`.
126
122
127 * :file:`GnuplotRuntime.py`. Move to :file:`IPython.sandbox`.
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 * :file:`Itpl.py`. Remove. Version already in :file:`IPython.external`.
135 * :file:`Itpl.py`. Remove. Version already in :file:`IPython.external`.
130
136
131 * :file:`Logger.py`. Move to :file:`IPython/core/logger.py`.
137 * :file:`Logger.py`. Move to :file:`IPython/core/logger.py`.
@@ -164,7 +170,7 b' Where things will be moved'
164 * :file:`gui`. Eventually this should be moved to a subdir of
170 * :file:`gui`. Eventually this should be moved to a subdir of
165 :file:`IPython.frontend`.
171 :file:`IPython.frontend`.
166
172
167 * :file:`history.py`. Move to :file:`IPython.core`.
173
168
174
169 * :file:`hooks.py`. Move to :file:`IPython.core`.
175 * :file:`hooks.py`. Move to :file:`IPython.core`.
170
176
@@ -182,7 +188,7 b' Where things will be moved'
182
188
183 * :file:`macro.py`. Move to :file:`IPython.core`.
189 * :file:`macro.py`. Move to :file:`IPython.core`.
184
190
185 * :file:`numutils.py`. Move to :file:`IPython.sandbox`.
191
186
192
187 * :file:`platutils.py`. Move to :file:`IPython.python`.
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