`defer` in python 3
Project description
Usages
Sugarless
>>> from deferrer import defer
>>> def f():
... defer(print)(0)
... defer(print)(1)
... print(2)
>>> f0()
2
1
0
Sugarful
>>> from deferrer import defer
>>> def f():
... defer and print(0)
... defer and print(1)
... print(2)
>>> f()
2
1
0
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
deferrer-0.1.0.tar.gz
(6.5 kB
view hashes)