diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2016-02-05 14:06:37 -0800 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2016-02-05 14:06:37 -0800 |
commit | e7b378f021b0acbaae6aaaeeaa92478121f1e7bd (patch) | |
tree | e025bdf2fca63e8523ef5268fbb4b9045b891d10 /grc/python/FlowGraph.py | |
parent | 66e80f1da484b330c595908c3a952251cb4c7bdb (diff) | |
parent | fe823d38eb68d7a5c9baaff75382abbab67df6cc (diff) |
Merge branch 'master' into next
Diffstat (limited to 'grc/python/FlowGraph.py')
-rw-r--r-- | grc/python/FlowGraph.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/grc/python/FlowGraph.py b/grc/python/FlowGraph.py index 686dae70fa..b2a1d27859 100644 --- a/grc/python/FlowGraph.py +++ b/grc/python/FlowGraph.py @@ -39,7 +39,10 @@ class FlowGraph(_FlowGraph, _GUIFlowGraph): self.grc_file_path = '' _FlowGraph.__init__(self, **kwargs) _GUIFlowGraph.__init__(self) - self._eval_cache = dict() + self.n = {} + self.n_hash = -1 + self._renew_eval_ns = True + self._eval_cache = {} def _eval(self, code, namespace, namespace_hash): """ |