i was right.

date: 1080008998

mood: pissed off
listening to:NIN – Hurt

class MyClass:
    "A simple example class"
    i = 12345
    def f(self):
        return 'hello world'

then MyClass.i and MyClass.f are valid attribute references, returning an integer and a method object, respectively.