apply 1.8.dev0 – Cross-Python apply

The apply module provides an apply() function for Python 2 and 3. It preserves the functionality of the apply() builtin, which has been deprecated and removed from Python.

API Documentation

apply.apply(object, args=None, kwargs=None)

Call a callable object with positional arguments taken from the optional tuple args, and keyword arguments taken from the optional dictionary kwargs; return its results.

Indices and Tables