Serhiy Storchaka added the comment:

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

----------
nosy: +serhiy.storchaka

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue24750>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to