[pypy-svn] rev 2128 - pypy/trunk/doc/devel

sanxiyn at codespeak.net sanxiyn at codespeak.net
Thu Oct 30 20:37:36 CET 2003


Author: sanxiyn
Date: Thu Oct 30 20:37:34 2003
New Revision: 2128

Modified:
   pypy/trunk/doc/devel/coding-style.txt
Log:
rst fix: bullet
non-test files are forbidden to start with test_, not t.


Modified: pypy/trunk/doc/devel/coding-style.txt
==============================================================================
--- pypy/trunk/doc/devel/coding-style.txt	(original)
+++ pypy/trunk/doc/devel/coding-style.txt	Thu Oct 30 20:37:34 2003
@@ -33,10 +33,11 @@
 Object Spaces
 ---------------
 
-- objectspace classes are always spelled "ObjSpace"
-    e.g. TrivialObjSpace
-         StdObjSpace
-         FlowObjSpace
+- objectspace classes are always spelled "ObjSpace". e.g.
+
+  - TrivialObjSpace
+  - StdObjSpace
+  - FlowObjSpace
 
 - at interpreter level and in ObjSpace all boxed values
   have a leading ``w_`` to indicate "wrapped values".  This
@@ -54,7 +55,7 @@
   which contain unittests.  Such scripts can usually be executed
   directly or are collectively run by pypy/test_all.py 
 
-- every non-test file is forbidden to start with "t"
+- every non-test file is forbidden to start with ``test_``.
 
 - each test directory needs a copy of pypy/tool/autopath.py which
   upon import will make sure that sys.path contains the directory


More information about the Pypy-commit mailing list