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

anna at codespeak.net anna at codespeak.net
Mon Jun 23 17:11:42 CEST 2003


Author: anna
Date: Mon Jun 23 17:11:41 2003
New Revision: 1006

Modified:
   pypy/trunk/doc/devel/coding-style.txt
Log:
corrected formatting for reST

Modified: pypy/trunk/doc/devel/coding-style.txt
==============================================================================
--- pypy/trunk/doc/devel/coding-style.txt	(original)
+++ pypy/trunk/doc/devel/coding-style.txt	Mon Jun 23 17:11:41 2003
@@ -50,17 +50,17 @@
 Naming and environment
 -----------------------------
 
-- the PYTHONPATH should be set to the filesytstem equivalent of
-  http://codespeak.net:8080/svn/pypy/trunk/src
+- the PYTHONPATH should be set to the filesystem equivalent of
+  http://codespeak.net/svn/pypy/trunk/src
   in fact the "autopath" module does this for you.
 
-- __init__.py is always empty except for "pypy/objspace/*"
+- ``__init__.py`` is always empty except for ``"pypy/objspace/*"``
 
 - directories/modules/namespaces are always lowercase
 
 - classes are CamelCase
 
-- functions/methods  are lowercase and '_'-separated (if
+- functions/methods  are lowercase and ``'_'-separated`` (if
   you need to separate at all)
 
 Object Spaces
@@ -71,8 +71,8 @@
          StdObjSpace
 
 - at interpreter level and in ObjSpace all boxed values
-  have a leading 'w_' to indicate "wrapped values".  This
-  includes w_self.  Don't use 'w_' in application level
+  have a leading ``w_`` to indicate "wrapped values".  This
+  includes w_self.  Don't use ``w_`` in application level
   python only code.
 
 - not more than 4 directory nesting levels
@@ -104,6 +104,6 @@
 Miscellaneous stuff
 ---------------------
 
-- to edit wiki pages do
+To edit wiki pages do:
 
-  svn co http://codespeak.net/svn/pypy/trunk/www/moininstance/data/text wiki-pages
+ `` svn co http://codespeak.net/svn/pypy/trunk/www/moininstance/data/text wiki-pages``


More information about the Pypy-commit mailing list