##// END OF EJS Templates
fix run_cell signature in parallelmagic...
MinRK -
Show More
@@ -211,7 +211,7 b' class ParalleMagic(Plugin):'
211 print '[stdout:%i]'%eid, stdout
211 print '[stdout:%i]'%eid, stdout
212
212
213
213
214 def pxrun_cell(self, raw_cell, store_history=True):
214 def pxrun_cell(self, raw_cell, store_history=False, silent=False):
215 """drop-in replacement for InteractiveShell.run_cell.
215 """drop-in replacement for InteractiveShell.run_cell.
216
216
217 This executes code remotely, instead of in the local namespace.
217 This executes code remotely, instead of in the local namespace.
@@ -258,7 +258,7 b' class ParalleMagic(Plugin):'
258 return False
258 return False
259 else:
259 else:
260 try:
260 try:
261 result = self.active_view.execute(cell, block=False)
261 result = self.active_view.execute(cell, silent=False, block=False)
262 except:
262 except:
263 ipself.showtraceback()
263 ipself.showtraceback()
264 return True
264 return True
General Comments 0
You need to be logged in to leave comments. Login now