Chris Angelico wrote: > var = some_value > var = decorator(var) > > with this: > > var = decorator(some_value) > > as in your example. Decorator syntax buys us nothing above this. It would if it made the name of the variable available to the decorator: @decorator var = value becomes var = decorator("var", value) -- Greg