As in the title I want to know how to have a self instance in a staticmethod in python.

link|improve this question

70% accept rate
1  
use global keyword I suppose, but I do no think you want to do what your asking...there is a better way – eat_a_lemon Apr 20 '11 at 20:33
3  
I will ask: why? – user225312 Apr 20 '11 at 20:34
Why don't you tell us what the problem you're trying to solve is (with code) and we'll suggest something better than using static methods, which are rarely a good idea in Python. – nmichaels Apr 20 '11 at 20:34
can you guys see the second answer on this question stackoverflow.com/questions/5642500/… – xdsy Apr 20 '11 at 20:36
1  
I put an answer on your bounty – eat_a_lemon Apr 20 '11 at 21:05
show 4 more comments
feedback

1 Answer

By definition, a static method does not have a self parameter. That's what makes it static. If it did have a self parameter, it would be a regular method and not a static method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.