[pypy-svn] r44840 - pypy/extradoc/talk/ep2007/interpreter

fijal at codespeak.net fijal at codespeak.net
Sun Jul 8 10:04:48 CEST 2007


Author: fijal
Date: Sun Jul  8 10:04:48 2007
New Revision: 44840

Modified:
   pypy/extradoc/talk/ep2007/interpreter/local.py
Log:
Make it a bit more convinient


Modified: pypy/extradoc/talk/ep2007/interpreter/local.py
==============================================================================
--- pypy/extradoc/talk/ep2007/interpreter/local.py	(original)
+++ pypy/extradoc/talk/ep2007/interpreter/local.py	Sun Jul  8 10:04:48 2007
@@ -14,5 +14,6 @@
 if __name__ == '__main__':
     send, receive = socket_connecter(('localhost', PORT))
     r = RemoteProtocol(send, receive)
-
-
+    x = r.get_remote('x')
+    F = r.get_remote('f')
+    



More information about the Pypy-commit mailing list