Is it possible to access a static method or attribute when assigning to a static attribute?
For example:
class Test:
@staticmethod
def fortytwo():
return 42
var = Test.fortytwo()
would raise NameError: name 'Test' is not defined