[pypy-svn] r33313 - pypy/dist/pypy/doc/discussion

hpk at codespeak.net hpk at codespeak.net
Sun Oct 15 16:28:52 CEST 2006


Author: hpk
Date: Sun Oct 15 16:28:50 2006
New Revision: 33313

Modified:
   pypy/dist/pypy/doc/discussion/distribution-implementation.txt
Log:
fix ReST problem


Modified: pypy/dist/pypy/doc/discussion/distribution-implementation.txt
==============================================================================
--- pypy/dist/pypy/doc/discussion/distribution-implementation.txt	(original)
+++ pypy/dist/pypy/doc/discussion/distribution-implementation.txt	Sun Oct 15 16:28:50 2006
@@ -33,8 +33,8 @@
 
 So the basic scheme would look like::
 
-remote_ref = remote("Object reference")
-remote_ref.any_method()
+    remote_ref = remote("Object reference")
+    remote_ref.any_method()
 
 ``remote_ref`` in above example looks like normal python object to user,
 but is implemented differently (W_RemoteXXX), and uses app-level proxy
@@ -48,4 +48,4 @@
 probably using some of the Armin's hacks to rewrite it using greenlets instead
 of threads.
 
-.. _`py.execnet`: http://codespeak.net/py/current/doc/execnet.html
\ No newline at end of file
+.. _`py.execnet`: http://codespeak.net/py/current/doc/execnet.html



More information about the Pypy-commit mailing list