Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
231e22facb565ccd2fd68cf7a9544eb6435c8b0d
/
.
/
Lib
/
test
/
test_symtable.py
blob: c521439660f88ab7e502d247425230b8af0ec4e8 [
file
]
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
))