Do not let defs shadow built-ins.

This commit is contained in:
Simon Forman 2021-11-27 10:57:55 -08:00
parent bc16f5f621
commit 626cc9aefd
1 changed files with 3 additions and 3 deletions

View File

@ -201,9 +201,9 @@ class Def(object):
if line.lstrip().startswith('#'):
continue
name, body = text_to_expression(line)
## if name not in dictionary:
## inscribe(class_(name, body), dictionary)
inscribe(class_(name, body), dictionary)
if name not in dictionary:
inscribe(class_(name, body), dictionary)
## inscribe(class_(name, body), dictionary)
#