1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
from .itertoolz import *
from .functoolz import *
from .dicttoolz import *
from .recipes import *
from functools import partial, reduce
sorted = sorted
map = map
filter = filter
# Aliases
comp = compose
# Always-curried functions
flip = functoolz.flip = curry(functoolz.flip)
memoize = functoolz.memoize = curry(functoolz.memoize)
from . import curried # sandbox
functoolz._sigs.update_signature_registry()
# What version of toolz does cytoolz implement?
__toolz_version__ = '1.0.0'
from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
|