Superclass static method name from subclass

Ian Pilcher arequipeno at gmail.com
Fri Nov 11 11:21:03 EST 2022


Is it possible to access the name of a superclass static method, when
defining a subclass attribute, without specifically naming the super-
class?

Contrived example:

   class SuperClass(object):
       @staticmethod
       def foo():
           pass

   class SubClass(SuperClass):
       bar = SuperClass.foo
             ^^^^^^^^^^

Is there a way to do this without specifically naming 'SuperClass'?

-- 
========================================================================
Google                                      Where SkyNet meets Idiocracy
========================================================================


More information about the Python-list mailing list