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 Lita.Cho
Recipients Lita.Cho, jesstess, serhiy.storchaka, terry.reedy
Date 2014-07-24.21:43:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1406238203.8.0.482945967482.issue22061@psf.upfronthosting.co.za>
In-reply-to
Content
I updated my source code, and it looks like turtledemo doesn't launch anymore. I get the following error:

Traceback (most recent call last):
  File "/Users/litacho/Development/cpython/Lib/runpy.py", line 170, in _run_module_as_main
    "__main__", mod_spec)
  File "/Users/litacho/Development/cpython/Lib/runpy.py", line 85, in _run_code
    exec(code, run_globals)
  File "/Users/litacho/Development/cpython/Lib/turtledemo/__main__.py", line 328, in <module>
    main()
  File "/Users/litacho/Development/cpython/Lib/turtledemo/__main__.py", line 324, in main
    demo = DemoWindow()
  File "/Users/litacho/Development/cpython/Lib/turtledemo/__main__.py", line 124, in __init__
    self.mBar.tk_menuBar(self.ExamplesBtn, self.OptionsBtn)
AttributeError: 'Frame' object has no attribute 'tk_menuBar'

I dug into it and it looks like tk_menuBar was removed due to a fix in issue4350. If tk_menuBar needs to be removed, what method does turtledemo need to call instead to propagate its panels?
History
Date User Action Args
2014-07-24 21:43:23Lita.Chosetrecipients: + Lita.Cho, terry.reedy, jesstess, serhiy.storchaka
2014-07-24 21:43:23Lita.Chosetmessageid: <1406238203.8.0.482945967482.issue22061@psf.upfronthosting.co.za>
2014-07-24 21:43:23Lita.Cholinkissue22061 messages
2014-07-24 21:43:23Lita.Chocreate