7stud <bbxx789_05ss at yahoo.com> wrote: > Hi, > > Can someone show me how to manually implement staticmethod()? Here is Simplest way: class smethod(object): def __init__(self, f): self.f=f def __call__(self, *a, **k): return self.f(*a, **k) Alex