Not nearly as slick as the Ruby version, but how about something like this:

    from Boots import App, Para, Button, alert
    
    def Shoeless(App):
        t = Para(text = 'Not Clicked')
        b = Button(label = 'The label')

        def on_b_clicked(self):
            alert('You clicked the button!')
            self.t.text = 'Clicked!'

Like Justin said, to implement this you would need to use a custom metaclass. 

The problem you run into next is how to keep track of the *order* that things appear in the class definition! Currently there is no way to know if `t` should be above `b` or the other way around, since you receive the contents of the class definition as a python `dict`.

However, in Python 3.0 [metaclasses are being changed][1] in a couple of (minor) ways. One of them is the `__prepare__` method, which allows you to supply your own custom dictionary-like object to be used instead -- this means you'll be able to track the order in which items are defined, and position them accordingly in the window.


  [1]: http://www.python.org/dev/peps/pep-3115/