Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
de6024872abe4fd95972036db63d0a57cf557f94
/
.
/
Lib
/
test
/
test_symtable.py
blob: c521439660f88ab7e502d247425230b8af0ec4e8 [
file
] [
log
] [
blame
]
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
))