This PR adds functionality to extract the underlying functions from staticmethods.
For each specified method (including the wrapped method and any on_backoff/on_giveup/on_success methods), it checks if it's a staticmethod and if so extracts the wrapped function from target.__func__
This PR adds functionality to extract the underlying functions from staticmethods.
For each specified method (including the wrapped method and any on_backoff/on_giveup/on_success methods), it checks if it's a staticmethod and if so extracts the wrapped function from
target.__func__