|
@@
-292,3
+292,10
b' class HistoryMagics(Magics):'
|
|
292
|
292
|
print(histlines)
|
|
293
|
293
|
print("=== Output: ===")
|
|
294
|
294
|
self.shell.run_cell("\n".join(hist), store_history=False)
|
|
|
295
|
|
|
|
296
|
@line_magic
|
|
|
297
|
def recall(self,arg):
|
|
|
298
|
self.rerun(arg)
|
|
|
299
|
|
|
|
300
|
recall.__doc__ = rerun.__doc__
|
|
|
301
|
|