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 Zero
Recipients Zero, paul.moore, steve.dower, terry.reedy, tim.golden, zach.ware
Date 2019-10-29.21:14:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1572383648.52.0.228001978432.issue38636@roundup.psfhosted.org>
In-reply-to
Content
In the latest Python 3.8.0 installation when running IDLE on Windows, pressing "Alt + T" generates the following error:

    Exception in Tkinter callback
    Traceback (most recent call last):
      File "C:\Program Files\Python38\Lib\tkinter\__init__.py", line 1883, in __call__
        return self.func(*args)
      File "C:\Program Files\Python38\Lib\idlelib\multicall.py", line 176, in handler
        r = l[i](event)
    TypeError: toggle_tabs_event() missing 1 required positional argument: 'event'

Similarly, pressing "Alt + U" will generate a very similar error:

    Exception in Tkinter callback
    Traceback (most recent call last):
      File "C:\Program Files\Python38\Lib\tkinter\__init__.py", line 1883, in __call__
        return self.func(*args)
      File "C:\Program Files\Python38\Lib\idlelib\multicall.py", line 176, in handler
        r = l[i](event)
    TypeError: change_indentwidth_event() missing 1 required positional argument: 'event'
History
Date User Action Args
2019-10-29 21:14:08Zerosetrecipients: + Zero, terry.reedy, paul.moore, tim.golden, zach.ware, steve.dower
2019-10-29 21:14:08Zerosetmessageid: <1572383648.52.0.228001978432.issue38636@roundup.psfhosted.org>
2019-10-29 21:14:08Zerolinkissue38636 messages
2019-10-29 21:14:07Zerocreate