Snippets tagged “decorators”
2 snippets use this tag.
- How do I make function decorators and chain them together?Python
Function decorators allow you to wrap a function in another function.
- What does functools.wraps do?Python
functools.wraps is a decorator that can be used to modify a function or method by updating its metadata.