mirror of
https://github.com/python/cpython.git
synced 2026-06-19 17:41:43 -04: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))
|