mirror of
https://github.com/python/cpython.git
synced 2025-10-20 00:13:47 +00:00
9 lines
177 B
Python
9 lines
177 B
Python
![]() |
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))
|