python-decorators

Examples

Wrapping a simple logic

A decorator can be used to wrap a simple piece of logic to the decorated function.

It does so by creating a new function, injecting the logic, and calling the original function to retrieve the result.

Prev / Up / Next