While integrating a django app i have not used before, i found two different ways used to define functions in classes. The author seems to use them both very intentionally. The first one is one i myself use a lot:
class Dummy(object):
def some_function(self,*args,**kwargs):
do something here
self is the class instance
The other one is one i do not use, mostly because i do not understand when to use it, and what for:
class Dummy(object):
@classmethod
def some_function(cls,*args,**kwargs):
do something here
cls refers to what?
In the python docs the classmethod decorator is explained with this sentence:
A class method receives the class as implicit first argument, just like an instance method receives the instance.
So i guess cls refers to Dummy itself (the class, not the instance). I do not exactly understand why this exists, because i could always do this:
type(self).do_something_with_the_class
Is this just for the sake of clarity, or did i miss the most important part: spooky and fascinating things that couldn't be done without it?