Close: #4 - translate - --> _

This commit is contained in:
Paul Tagliamonte 2012-12-31 14:32:29 -05:00
parent 3a708add3b
commit 62c7044f37

View File

@ -28,6 +28,9 @@ def _resolve_atom(value, self):
except ValueError:
pass
# LISP Variants have a tendency to use "-" in symbols n' shit.
value = value.replace("-", "_")
return _mangle(HYSymbol(value))