[Python-checkins] commit of r41536 - python/trunk/Lib/test

neal.norwitz@python.org neal.norwitz at python.org
Fri Nov 25 04:15:54 CET 2005


Author: neal.norwitz
Date: Fri Nov 25 04:15:49 2005
New Revision: 41536

Modified:
   python/trunk/Lib/test/test_symtable.py
Log:
Test is still disabled, but access through public module

Modified: python/trunk/Lib/test/test_symtable.py
==============================================================================
--- python/trunk/Lib/test/test_symtable.py	(original)
+++ python/trunk/Lib/test/test_symtable.py	Fri Nov 25 04:15:49 2005
@@ -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


More information about the Python-checkins mailing list