before_after
before_after copied to clipboard
before_after provides utilities to help test race conditions
Closes https://github.com/c-oreills/before_after/issues/8
I know I'm 4 years late to the party but the 1.0.1 release does not have a corresponding tag on GitHub.
Will you work with that project more or it is dead?
Please include LICENSE in the sdist
Let's suppose I have following class: ``` class Test(): @staticmethod def a(): return 'a' @classmethod def b(cls): return 'b' ``` I tried to attach pre/post function, but I am getting...