From c73b0268d13928ee5ed980db8c4104cf0e0422ce Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Wed, 26 Aug 2020 17:58:38 -0400 Subject: Better docs on variable.name = None --- python/function.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'python') diff --git a/python/function.py b/python/function.py index 65aaac2d..bb4f817a 100644 --- a/python/function.py +++ b/python/function.py @@ -880,7 +880,10 @@ class Variable(object): self._function.create_user_var(self, self._type, value) self._name = value else: + # Name will be reassigned by analysis on the next analysis update + # This Variable object is will not be updated self._function.create_user_var(self, self._type, "") + self._name = None @property def type(self): -- cgit v1.3.1