[pypy-svn] rev 618 - pypy/trunk/src/pypy/interpreter/test

arigo at codespeak.net arigo at codespeak.net
Tue May 27 19:19:52 CEST 2003


Author: arigo
Date: Tue May 27 19:19:51 2003
New Revision: 618

Modified:
   pypy/trunk/src/pypy/interpreter/test/hello_world.py
Log:
made hello_world non-crashing Python code again

Modified: pypy/trunk/src/pypy/interpreter/test/hello_world.py
==============================================================================
--- pypy/trunk/src/pypy/interpreter/test/hello_world.py	(original)
+++ pypy/trunk/src/pypy/interpreter/test/hello_world.py	Tue May 27 19:19:51 2003
@@ -4,6 +4,6 @@
 
 map(main, ["hello world", "good bye"])
 apply(main, ("apply works, too",))
+apply(main, (), {"aStr": "it really works"})
 
 print chr(65)
-print chr('!')


More information about the Pypy-commit mailing list