Skip to content

Instantly share code, notes, and snippets.

from inspect import getmembers, getargspec, ismethod
from functools import wraps
from decorator import decorator
# Some super basic decorators
def std_decorator(f):
def std_wrapper(*args, **kwargs):
return f(*args, **kwargs)
return std_wrapper