Workflows, ExecutionPlanGenerator, Reporting, UserData, conductor improvements

This commit is contained in:
Stan Lagun
2013-03-11 19:11:27 +04:00
parent 9d0b7e39fe
commit 28bc7ff1d5
34 changed files with 852 additions and 276 deletions

View File

@@ -5,7 +5,8 @@ class Context(object):
def _get_data(self):
if self._data is None:
self._data = {} if self._parent is None else self._parent._get_data().copy()
self._data = {} if self._parent is None \
else self._parent._get_data().copy()
return self._data
def __getitem__(self, item):