I\'m trying to write a python class which uses a decorator function that needs information of the instance state. This is working as intended, but if I explicitly make the d
ensure_black is returning a _aux method that isn't decorated by @staticmethod
ensure_black
_aux
@staticmethod
You can return a non-static method to a static_method
http://docs.python.org/library/functions.html#staticmethod