3
votes
How would you design a very “Pythonic” UI framework?
With some Metaclass magic to keep the ordering I have the following working. I'm not sure how pythonic it is but it is good fun for creating simple things.
class w(Wndw):
title=' …
