##// END OF EJS Templates
in irunner, don't send last newline if child is gone...
MinRK -
Show More
@@ -263,7 +263,8 b' class InteractiveRunner(object):'
263
263
264 # Leave the child ready for more input later on, otherwise select just
264 # Leave the child ready for more input later on, otherwise select just
265 # hangs on the second invocation.
265 # hangs on the second invocation.
266 c.send('\n')
266 if c.isalive():
267 c.send('\n')
267
268
268 # Return any requested output
269 # Return any requested output
269 if get_output:
270 if get_output:
General Comments 0
You need to be logged in to leave comments. Login now