Is anyone available to write up a PEP on how to turn super into a keyword? Inside regular and class methods, super.foo(args) should be equivalent to super(ThisClass, self).foo(args). I think there are ways to make the old syntax work too, but maybe that's only necessary for 2.6. -- --Guido van Rossum (home page: http://www.python.org/~guido/)