before_after icon indicating copy to clipboard operation
before_after copied to clipboard

before_after provides utilities to help test race conditions

Results 7 before_after issues
Sort by recently updated
recently updated
newest added

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.

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...