Merge pull request #29381 from nmadhok/2015.8-runtime-fix

No need to deepcopy since six.iterkeys() creates a copy
This commit is contained in:
Mike Place 2015-12-03 08:54:52 -07:00
commit fd677e1d58

View file

@ -285,9 +285,8 @@ class SyncClientMixin(object):
# Inject some useful globals to *all* the function's global
# namespace only once per module-- not per func
completed_funcs = []
_functions = copy.deepcopy(self.functions)
for mod_name in six.iterkeys(_functions):
for mod_name in six.iterkeys(self.functions):
if '.' not in mod_name:
continue
mod, _ = mod_name.split('.', 1)