[pypy-svn] r44439 - in pypy/dist/pypy/lang/scheme: . test

jlg at codespeak.net jlg at codespeak.net
Fri Jun 22 20:37:57 CEST 2007


Author: jlg
Date: Fri Jun 22 20:37:55 2007
New Revision: 44439

Modified:
   pypy/dist/pypy/lang/scheme/TODO.txt
   pypy/dist/pypy/lang/scheme/test/test_parser.py
Log:
update test_parser to work with astbuilder new location

Modified: pypy/dist/pypy/lang/scheme/TODO.txt
==============================================================================
--- pypy/dist/pypy/lang/scheme/TODO.txt	(original)
+++ pypy/dist/pypy/lang/scheme/TODO.txt	Fri Jun 22 20:37:55 2007
@@ -12,6 +12,7 @@
 -------
 
 - symbols, variables and execution context
+  global dict for symbols _obarray_
 - control structures
 - functions
 

Modified: pypy/dist/pypy/lang/scheme/test/test_parser.py
==============================================================================
--- pypy/dist/pypy/lang/scheme/test/test_parser.py	(original)
+++ pypy/dist/pypy/lang/scheme/test/test_parser.py	Fri Jun 22 20:37:55 2007
@@ -1,4 +1,5 @@
-from pypy.lang.scheme.ssparser import *
+from pypy.lang.scheme.ssparser import parse
+from pypy.lang.scheme.astbuilder import ASTBuilder
 from pypy.rlib.parsing.parsing import Symbol, Nonterminal
 
 def test_simple_sexpr():



More information about the Pypy-commit mailing list