Ah, Symbols.
This commit is contained in:
parent
343a2f8459
commit
fcf483af22
|
|
@ -120,7 +120,8 @@ def delabel(f, seen=None, c=None):
|
|||
if not isinstance(f, tuple):
|
||||
try:
|
||||
seen[f] = f.__class__(c[f.prefix] + 1)
|
||||
except TypeError: # FunctionJoyTypes break this.
|
||||
except (TypeError, # FunctionJoyTypes break this.
|
||||
AttributeError): # Symbol
|
||||
seen[f] = f
|
||||
else:
|
||||
c[f.prefix] += 1
|
||||
|
|
|
|||
Loading…
Reference in New Issue