summaryrefslogtreecommitdiff
path: root/python/function.py
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2020-08-26 17:58:38 -0400
committerGlenn Smith <glenn@vector35.com>2020-08-26 17:58:38 -0400
commitc73b0268d13928ee5ed980db8c4104cf0e0422ce (patch)
treeb153bcf0b8e580a61172003461239b928a8faa2f /python/function.py
parent2be15b6aaff6ba8f31718b5d0e5b72f1edd50111 (diff)
Better docs on variable.name = None
Diffstat (limited to 'python/function.py')
-rw-r--r--python/function.py3
1 files changed, 3 insertions, 0 deletions
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):