I had planned on subclassing Tkinter.Toplevel() using property()
to wrap access to properties like a window's title.

After much head scratching and a peek at the Tkinter.py source, I
realized that all Tkinter classes are old-style classes (even
under Python 2.7).

1. Is there a technical reason why Tkinter classes are still
old-style classes?

2. Is there a technique I can use to get property() to work with
old-style classes? Or, must I use composition and wrap a
reference to a Tkinter.Toplevel() window in a new style class?

Thanks,
Malcolm
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to