mirror of
https://github.com/python/cpython.git
synced 2025-09-04 07:51:13 +00:00
8 lines
177 B
Python
8 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))
|