[pypy-svn] r50241 - pypy/dist/pypy/rlib/test

arigo at codespeak.net arigo at codespeak.net
Tue Jan 1 15:18:40 CET 2008


Author: arigo
Date: Tue Jan  1 15:18:39 2008
New Revision: 50241

Modified:
   pypy/dist/pypy/rlib/test/test_rsocket.py
Log:
Thanks fijal


Modified: pypy/dist/pypy/rlib/test/test_rsocket.py
==============================================================================
--- pypy/dist/pypy/rlib/test/test_rsocket.py	(original)
+++ pypy/dist/pypy/rlib/test/test_rsocket.py	Tue Jan  1 15:18:39 2008
@@ -127,11 +127,11 @@
     lock = thread.allocate_lock()
     lock.acquire()
     thread.start_new_thread(connecting, ())
-    print 'waiting for connexion'
+    print 'waiting for connection'
     s1, addr2 = sock.accept()
-    print 'connexion accepted'
+    print 'connection accepted'
     lock.acquire()
-    print 'connecting side knows that the connexion was accepted too'
+    print 'connecting side knows that the connection was accepted too'
     assert addr.eq(s2.getpeername())
     assert addr2.eq(s2.getsockname())
     assert addr2.eq(s1.getpeername())



More information about the Pypy-commit mailing list