Where is the source code for the decorator classmethod located in the python source code. Specifically I am having trouble finding the exact file it's defined in version 2.7.2
|
I am not answering what you asked - but bellow goes what could be a decorator equivalent to Classmethod, written in Pure Python - since the one in the source code is in C, inside So, the idea of classmethods is to use the "descriptor" mechanism, as described in Python's data model - and make it so that the
And on Python console:
* EDIT - Update * The O.P. further asked "If I wanted the decorator to also accept a parameter what would be the proper format for init? " - In that case it is not only "init" which has to be changed - a decorator that accepts configuration parameters is actually called in "two stages" - the first one anotate the parameters, and returns a callable - the second call accepts only the function which will actually be decorated. There are a few ways to do it - but I think the most straightforward is to have a function that returns the class above, like in:
|
|||||
|
|
|||
|
|