Reduced number of temporary names used at module scope. Use underscores in
front of temporary names in the module namespace.
This commit is contained in:
parent
1f83ccee88
commit
dc1a072e02
|
@ -72,12 +72,10 @@ arglist = 311
|
||||||
argument = 312
|
argument = 312
|
||||||
#--end constants--
|
#--end constants--
|
||||||
|
|
||||||
names = dir()
|
|
||||||
sym_name = {}
|
sym_name = {}
|
||||||
for name in names:
|
for _name, _value in globals().items():
|
||||||
number = eval(name)
|
if type(_value) is type(0):
|
||||||
if type(number) is type(0):
|
sym_name[_value] = _name
|
||||||
sym_name[number] = name
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
Loading…
Reference in New Issue