mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-16 10:00:39 +00:00
23 lines
314 B
Python
23 lines
314 B
Python
|
from .itertoolz import *
|
||
|
|
||
|
from .functoolz import *
|
||
|
|
||
|
from .dicttoolz import *
|
||
|
|
||
|
from .recipes import *
|
||
|
|
||
|
from .compatibility import map, filter
|
||
|
|
||
|
from . import sandbox
|
||
|
|
||
|
from functools import partial, reduce
|
||
|
|
||
|
sorted = sorted
|
||
|
|
||
|
# Aliases
|
||
|
comp = compose
|
||
|
|
||
|
functoolz._sigs.create_signature_registry()
|
||
|
|
||
|
__version__ = '0.9.0'
|