Merge "Add docstring describing the inject instance variable"

This commit is contained in:
Jenkins
2014-05-30 21:32:59 +00:00
committed by Gerrit Code Review

View File

@@ -134,6 +134,11 @@ class Atom(object):
the names that this atom expects (in a way this is like
remapping a namespace of another atom into the namespace
of this atom).
:ivar inject: An *immutable* input_name => value dictionary which specifies
any initial inputs that should be automatically injected into
the atoms scope before the atom execution commences (this
allows for providing atom *local* values that do not need to
be provided by other atoms).
"""
def __init__(self, name=None, provides=None, inject=None):