提交 e59aaf76 authored 作者: Frederic Bastien's avatar Frederic Bastien

comment

上级 7b003176
...@@ -1057,7 +1057,11 @@ def _pickle_Function(f): ...@@ -1057,7 +1057,11 @@ def _pickle_Function(f):
(str(d_i), str(d_j))) (str(d_i), str(d_j)))
else: else:
raise AliasedMemoryError(d_i, d_j) raise AliasedMemoryError(d_i, d_j)
rval = (_constructor_Function, (f.maker, input_storage, inputs_data, f.trust_input)) # The user can override trust_input. Our doc tell that. We should
# not do that anymore and make sure the Maker have all the
# information needed.
rval = (_constructor_Function,
(f.maker, input_storage, inputs_data, f.trust_input))
return rval return rval
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论