A subclass of the built-in staticmethod(), indicating an abstract staticmethod. Otherwise it is similar to abstractmethod().
@abc.abstractstaticmethod
class C(ABC):
@staticmethod
@abstractmethod
def my_abstract_staticmethod(arg):
...