[Scipy-svn] r5424 - trunk

scipy-svn at scipy.org scipy-svn at scipy.org
Sat Jan 10 06:06:05 EST 2009


Author: jarrod.millman
Date: 2009-01-10 05:06:05 -0600 (Sat, 10 Jan 2009)
New Revision: 5424

Removed:
   trunk/FORMAT_GUIDELINES.txt
Log:
removing old file


Deleted: trunk/FORMAT_GUIDELINES.txt
===================================================================
--- trunk/FORMAT_GUIDELINES.txt	2009-01-10 11:01:29 UTC (rev 5423)
+++ trunk/FORMAT_GUIDELINES.txt	2009-01-10 11:06:05 UTC (rev 5424)
@@ -1,27 +0,0 @@
-Follow the standard Python formatting rules when writing code for SciPy.  Guido 
-describes them "here":http://www.python.org/doc/essays/styleguide.html.  A few 
-reminders follow:
-
-   o Use 4 spaces for indentation levels.  Do not use tabs as they can result 
-     in indentation confusion.  Most editors have a feature that will insert 4 
-     spaces when the tab key is hit.  Also, many editors will automatically 
-     search/replace leading tabs with 4 spaces.
-
-   o Only 80 characters on a line.
-
-   o use all lowercase function names with underscore separated words:
-
-        def set_some_value()
-
-     instead of:
-
-        def setSomeValue()
-
-
-   o use CamelCase class names:
-
-        def BaseClass()
-
-     instead of:
-
-        def base_class()




More information about the Scipy-svn mailing list