Doesn't look like the current Python decorator syntax is getting recognized. For example, in a foo.py file:
class Foo(object): @classmethod # This is the decorator syntax. def cm(cls): print "A class method. Class is: %s" % cls.__name__
that "@classmethod" should be getting highlighted, but it isn't.
---John