Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
33b77de106cc49f3c7e03335d4ff989fa909b9e2
/
.
/
Lib
/
test
/
test_symtable.py
blob: 56d772ea4553af90bafae306ba2d2ca0dabf295f [
file
] [
log
] [
blame
]
from
test_support
import
verify
import
_symtable
symbols
=
_symtable
.
symtable
(
"def f(x): return x"
,
"?"
,
"exec"
)
verify
(
symbols
[
0
].
name
==
"global"
)
verify
(
len
([
ste
for
ste
in
symbols
.
values
()
if
ste
.
name
==
"f"
])
==
1
)