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 serhiy.storchaka
Recipients RusiMody, kbk, python-dev, roger.serwy, serhiy.storchaka, taleinat, terry.reedy
Date 2014-10-10.06:26:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412922361.11.0.738912864448.issue20167@psf.upfronthosting.co.za>
In-reply-to
Content
On 3.5 the issue is gone, but on 3.4 and 2.7 following traceback are generated:

$ ./python -m idlelib.idle Lib/decimal.py
Traceback (most recent call last):
  File "/home/serhiy/py/cpython-3.4/Lib/runpy.py", line 170, in _run_module_as_main
    "__main__", mod_spec)
  File "/home/serhiy/py/cpython-3.4/Lib/runpy.py", line 85, in _run_code
    exec(code, run_globals)
  File "/home/serhiy/py/cpython-3.4/Lib/idlelib/idle.py", line 11, in <module>
    idlelib.PyShell.main()
  File "/home/serhiy/py/cpython-3.4/Lib/idlelib/PyShell.py", line 1562, in main
    if flist.open(filename) is None:
  File "/home/serhiy/py/cpython-3.4/Lib/idlelib/FileList.py", line 36, in open
    edit = self.EditorWindow(self, filename, key)
  File "/home/serhiy/py/cpython-3.4/Lib/idlelib/PyShell.py", line 141, in __init__
    self.color_breakpoint_text()
  File "/home/serhiy/py/cpython-3.4/Lib/idlelib/PyShell.py", line 159, in color_breakpoint_text
    self.text.tag_config('BREAK', cfg)
AttributeError: 'NoneType' object has no attribute 'tag_config'
History
Date User Action Args
2014-10-10 06:26:01serhiy.storchakasetrecipients: + serhiy.storchaka, terry.reedy, kbk, taleinat, roger.serwy, RusiMody, python-dev
2014-10-10 06:26:01serhiy.storchakasetmessageid: <1412922361.11.0.738912864448.issue20167@psf.upfronthosting.co.za>
2014-10-10 06:26:01serhiy.storchakalinkissue20167 messages
2014-10-10 06:26:00serhiy.storchakacreate