[pypy-svn] r27848 - pypy/dist/pypy/module/stackless/test

tismer at codespeak.net tismer at codespeak.net
Mon May 29 15:22:46 CEST 2006


Author: tismer
Date: Mon May 29 15:22:45 2006
New Revision: 27848

Modified:
   pypy/dist/pypy/module/stackless/test/stack4.py
Log:
today it my "English purist" day. Forgive me :-)

Modified: pypy/dist/pypy/module/stackless/test/stack4.py
==============================================================================
--- pypy/dist/pypy/module/stackless/test/stack4.py	(original)
+++ pypy/dist/pypy/module/stackless/test/stack4.py	Mon May 29 15:22:45 2006
@@ -11,12 +11,12 @@
     v = 1
     print 'f sending',v
     outchan.send(v)
-    print 'f successfully sended',v
+    print 'f has successfully sent',v
     v = 2
     print 'f sending',v
     try:
         outchan.send(v)
-        print 'f successfully sended',v
+        print 'f has successfully sent',v
     except StopIteration:
         print 'f got StopIteration'
 



More information about the Pypy-commit mailing list