Configurables did not allow more than one "method" option, and mixed scenarios (options+methods+...) were sometimes flaky, forcing the user to know what order was the right one. Now, all options work the same, sharing the same "order" namespace. Backward incompatible change: Options are now required by default, unless a default is provided. Also adds a few candies for debugging/testing, found in the bonobo.util.inspect module.
9 lines
312 B
Python
9 lines
312 B
Python
from bonobo.nodes.basics import *
|
|
from bonobo.nodes.basics import __all__ as _all_basics
|
|
from bonobo.nodes.filter import Filter
|
|
from bonobo.nodes.io import *
|
|
from bonobo.nodes.io import __all__ as _all_io
|
|
from bonobo.nodes.throttle import RateLimited
|
|
|
|
__all__ = _all_basics + _all_io + ['Filter', 'RateLimited']
|