#!/usr/local/bin/python2 def fizzbuzz(n): print 1 class C(object): f = staticmethod(fizzbuzz) C.f(3)