34 lines
683 B
Python
34 lines
683 B
Python
from bonobo.util.collections import sortedlist
|
|
from bonobo.util.inspect import (
|
|
inspect_node,
|
|
isbag,
|
|
isconfigurable,
|
|
isconfigurabletype,
|
|
iscontextprocessor,
|
|
iserrorbag,
|
|
isloopbackbag,
|
|
ismethod,
|
|
isoption,
|
|
istype,
|
|
)
|
|
from bonobo.util.objects import (get_name, get_attribute_or_create, ValueHolder)
|
|
from bonobo.util.python import require
|
|
|
|
# Bonobo's util API
|
|
__all__ = [
|
|
'ValueHolder',
|
|
'get_attribute_or_create',
|
|
'get_name',
|
|
'inspect_node',
|
|
'isbag',
|
|
'isconfigurable',
|
|
'isconfigurabletype',
|
|
'iscontextprocessor',
|
|
'iserrorbag',
|
|
'isloopbackbag',
|
|
'ismethod',
|
|
'isoption',
|
|
'istype',
|
|
'require',
|
|
]
|