summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_symtable.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2005-11-25 03:15:49 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2005-11-25 03:15:49 (GMT)
commit89886ab2b027e8534049721d7ca81c287bd13ca4 (patch)
treeeec8e1403f4602bfdf1113d27aceb70a5c1e7c54 /Lib/test/test_symtable.py
parent21d19f7203f147622dfab9ddcc3efe1e0d71cd70 (diff)
downloadcpython-89886ab2b027e8534049721d7ca81c287bd13ca4.zip
cpython-89886ab2b027e8534049721d7ca81c287bd13ca4.tar.gz
cpython-89886ab2b027e8534049721d7ca81c287bd13ca4.tar.bz2
Test is still disabled, but access through public module
Diffstat (limited to 'Lib/test/test_symtable.py')
-rw-r--r--Lib/test/test_symtable.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_symtable.py b/Lib/test/test_symtable.py
index 2191366..44a8916 100644
--- a/Lib/test/test_symtable.py
+++ b/Lib/test/test_symtable.py
@@ -1,8 +1,8 @@
from test.test_support import vereq, TestFailed
-import _symtable
+import symtable
-symbols = _symtable.symtable("def f(x): return x", "?", "exec")
+symbols = symtable.symtable("def f(x): return x", "?", "exec")
## XXX
## Test disabled because symtable module needs to be rewritten for new compiler