Wrap the results of your Python functions
Project description
Wraptitude provides a decorator that wraps result of a function call in a call to another function.
>>> from wraptitude import Wrapper >>> @Wrapper(dict) ... def f(x): ... for i in range(x): ... yield i, i ** 2 ... >>> f(3) {0: 0, 1: 1, 2: 4} >>> @Wrapper(lambda x, y: x + y, 4) ... def g(x): ... return x * 5 ... >>> g(2) 14
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
wraptitude-0.0.0.tar.gz
(2.2 kB
view hashes)