##// END OF EJS Templates
merge review fperez-execution-refactor
MinRK -
Show More
@@ -372,7 +372,7 b" def magic_history(self, parameter_s = ''):"
372 372 else:
373 373 print(inline, end='', file=outfile)
374 374 else:
375 print(inline,end='', file=outfile)
375 print(inline, end='', file=outfile)
376 376 if print_outputs:
377 377 output = self.shell.output_hist.get(in_num)
378 378 if output is not None:
@@ -1565,7 +1565,6 b' class InteractiveShell(Configurable, Magic):'
1565 1565
1566 1566 def _indent_current_str(self):
1567 1567 """return the current level of indentation as a string"""
1568 #return self.indent_current_nsp * ' '
1569 1568 return self.input_splitter.indent_spaces * ' '
1570 1569
1571 1570 #-------------------------------------------------------------------------
@@ -20,7 +20,7 b' class Macro(IPyAutocall):'
20 20 """
21 21
22 22 def __init__(self,data):
23 # store the macro value, as a single string which can be executed
23 """store the macro value, as a single string which can be executed"""
24 24 self.value = ''.join(data).rstrip()+'\n'
25 25
26 26 def __str__(self):
General Comments 0
You need to be logged in to leave comments. Login now