From 89886ab2b027e8534049721d7ca81c287bd13ca4 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Fri, 25 Nov 2005 03:15:49 +0000 Subject: [PATCH] Test is still disabled, but access through public module --- Lib/test/test_symtable.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_symtable.py b/Lib/test/test_symtable.py index 2191366247a..44a8916fd6b 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