##// END OF EJS Templates
Second attempt to fix init_io readline test.
Brian Granger -
Show More
@@ -426,8 +426,7 b' class InteractiveShell(Configurable, Magic):'
426 426
427 427 def init_io(self):
428 428 import IPython.utils.io
429 if sys.platform == 'win32' and readline.have_readline and \
430 self.readline_use:
429 if sys.platform == 'win32' and self.has_readline:
431 430 Term = IPython.utils.io.IOTerm(
432 431 cout=readline._outputfile,cerr=readline._outputfile
433 432 )
General Comments 0
You need to be logged in to leave comments. Login now