[pypy-svn] r39244 - pypy/dist/pypy/lib/distributed

mwh at codespeak.net mwh at codespeak.net
Tue Feb 20 20:07:24 CET 2007


Author: mwh
Date: Tue Feb 20 20:07:20 2007
New Revision: 39244

Modified:
   pypy/dist/pypy/lib/distributed/protocol.py
Log:
two small typos


Modified: pypy/dist/pypy/lib/distributed/protocol.py
==============================================================================
--- pypy/dist/pypy/lib/distributed/protocol.py	(original)
+++ pypy/dist/pypy/lib/distributed/protocol.py	Tue Feb 20 20:07:20 2007
@@ -39,7 +39,7 @@
     from pypymagic import transparent_proxy as proxy
     from pypymagic import get_transparent_controller
 except ImportError:
-    raise ImportError("Cannot work without transparent proxy functional")
+    raise ImportError("Cannot work without transparent proxy functionality")
 
 from distributed.objkeeper import ObjKeeper
 import sys
@@ -50,7 +50,7 @@
 TODO list:
 
 1. Garbage collection - we would like probably to use weakrefs, but
-   since they're not perfectly working in pypy, let's live it alone for now
+   since they're not perfectly working in pypy, let's leave it alone for now
 2. Some error handling - exceptions are working, there are still some
    applications where it all explodes.
 3. Support inheritance and recursive types



More information about the Pypy-commit mailing list