This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ned.deily
Recipients ned.deily, roger.serwy, terry.reedy
Date 2013-04-01.05:01:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1364792478.17.0.822634238767.issue14254@psf.upfronthosting.co.za>
In-reply-to
Content
With the stop_readline patch, I'm seeing this exception upon shell restart when trying the same test as above:

$ ./python -m idlelib
Exception in Tkinter callback
Traceback (most recent call last):
  File "Lib/tkinter/__init__.py", line 1475, in __call__
    return self.func(*args)
  File "Lib/idlelib/PyShell.py", line 1225, in restart_shell
    self.interp.restart_subprocess(with_cwd=True)
  File "Lib/idlelib/PyShell.py", line 457, in restart_subprocess
    console.stop_readline()
AttributeError: 'PyShell' object has no attribute 'stop_readline'
History
Date User Action Args
2013-04-01 05:01:18ned.deilysetrecipients: + ned.deily, terry.reedy, roger.serwy
2013-04-01 05:01:18ned.deilysetmessageid: <1364792478.17.0.822634238767.issue14254@psf.upfronthosting.co.za>
2013-04-01 05:01:18ned.deilylinkissue14254 messages
2013-04-01 05:01:17ned.deilycreate