[pypy-svn] r12554 - pypy/dist/pypy/documentation

pedronis at codespeak.net pedronis at codespeak.net
Thu May 19 18:15:43 CEST 2005


Author: pedronis
Date: Thu May 19 18:15:42 2005
New Revision: 12554

Modified:
   pypy/dist/pypy/documentation/coding-guide.txt
Log:
added "for example"



Modified: pypy/dist/pypy/documentation/coding-guide.txt
==============================================================================
--- pypy/dist/pypy/documentation/coding-guide.txt	(original)
+++ pypy/dist/pypy/documentation/coding-guide.txt	Thu May 19 18:15:42 2005
@@ -95,10 +95,12 @@
 
 **variables**
   
-  variables should contain values of at most one type as described in `Object restrictions`_
-  at each control flow point, that means that joining control paths using the same variable
-  to contain both a float and a int should be avoided. Mixing None (basically with the role of
-  a null pointer) and `wrapped objects` and class instances is allowed.
+  variables should contain values of at most one type as described in
+  `Object restrictions`_ at each control flow point, that means for
+  example that joining control paths using the same variable to
+  contain both a float and a int should be avoided. Mixing None
+  (basically with the role of a null pointer) and `wrapped objects`
+  and class instances is allowed.
 
 **constants**
   



More information about the Pypy-commit mailing list