GUIs - A Modest Proposal

Gregory Ewing greg.ewing at canterbury.ac.nz
Mon Jun 7 21:14:32 EDT 2010


Terry Reedy wrote:
> pygui ... has its own problems. ... the api sytle is not standard 
> in Python (get_xx and set_xx methods instead of direct access or 
> properties);

That was only true in a very early version of PyGUI. Properties
are used very extensively now.

(It uses get_xxx and set_xxx methods to *implement* properties,
but you don't call those from outside, you use normal attribute
access.)

-- 
Greg



More information about the Python-list mailing list