summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_symtable.py
blob: c521439660f88ab7e502d247425230b8af0ec4e8 (plain)
1
2
3
4
5
6
7
8
from test_support import verify

import _symtable

symbols, scopes = _symtable.symtable("def f(x): return x", "?", "exec")

verify(symbols.has_key(0))
verify(scopes.has_key(0))