##// END OF EJS Templates
Add pending removal comments regarding the input handling methods in the kernel
Fernando Perez -
Show More
@@ -2162,6 +2162,8 b' class InteractiveShell(Configurable, Magic):'
2162 tline = self.prefilter_manager.prefilter_line(line)
2162 tline = self.prefilter_manager.prefilter_line(line)
2163 return self.run_source(tline)
2163 return self.run_source(tline)
2164
2164
2165 # PENDING REMOVAL: this method is slated for deletion, once our new
2166 # input logic has been 100% moved to frontends and is stable.
2165 def runlines(self, lines, clean=False):
2167 def runlines(self, lines, clean=False):
2166 """Run a string of one or more lines of source.
2168 """Run a string of one or more lines of source.
2167
2169
@@ -2339,7 +2341,9 b' class InteractiveShell(Configurable, Magic):'
2339
2341
2340 # For backwards compatibility
2342 # For backwards compatibility
2341 runcode = run_code
2343 runcode = run_code
2342
2344
2345 # PENDING REMOVAL: this method is slated for deletion, once our new
2346 # input logic has been 100% moved to frontends and is stable.
2343 def push_line(self, line):
2347 def push_line(self, line):
2344 """Push a line to the interpreter.
2348 """Push a line to the interpreter.
2345
2349
General Comments 0
You need to be logged in to leave comments. Login now