summaryrefslogtreecommitdiff
path: root/Lib/symbol.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/symbol.py')
-rwxr-xr-xLib/symbol.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/Lib/symbol.py b/Lib/symbol.py
index 4a71968b25..678e9efae2 100755
--- a/Lib/symbol.py
+++ b/Lib/symbol.py
@@ -72,12 +72,10 @@ arglist = 311
argument = 312
#--end constants--
-names = dir()
sym_name = {}
-for name in names:
- number = eval(name)
- if type(number) is type(0):
- sym_name[number] = name
+for _name, _value in globals().items():
+ if type(_value) is type(0):
+ sym_name[_value] = _name
def main():