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 kbk, markroseman, ncoghlan, ned.deily, roger.serwy, serhiy.storchaka, terry.reedy
Date 2015-08-01.19:10:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1438456202.6.0.500652265075.issue24750@psf.upfronthosting.co.za>
In-reply-to
Content
I would use optional import to support Tcl/Tk older than 8.5 in Python 3.4 and 2.7.

try:
    from tkinter.ttk import Scrollbar
except ImportError:
    pass
History
Date User Action Args
2015-08-01 19:10:02serhiy.storchakasetrecipients: + serhiy.storchaka, terry.reedy, kbk, ncoghlan, ned.deily, roger.serwy, markroseman
2015-08-01 19:10:02serhiy.storchakasetmessageid: <1438456202.6.0.500652265075.issue24750@psf.upfronthosting.co.za>
2015-08-01 19:10:02serhiy.storchakalinkissue24750 messages
2015-08-01 19:10:02serhiy.storchakacreate