[GRASS-SVN] r51234 - grass/branches/releasebranch_6_4/lib/python/ctypes

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Apr 1 06:54:44 EDT 2012


Author: martinl
Date: 2012-04-01 03:54:44 -0700 (Sun, 01 Apr 2012)
New Revision: 51234

Modified:
   grass/branches/releasebranch_6_4/lib/python/ctypes/__init__.py
Log:
ctypes: order modules by name, add missing


Modified: grass/branches/releasebranch_6_4/lib/python/ctypes/__init__.py
===================================================================
--- grass/branches/releasebranch_6_4/lib/python/ctypes/__init__.py	2012-04-01 10:52:06 UTC (rev 51233)
+++ grass/branches/releasebranch_6_4/lib/python/ctypes/__init__.py	2012-04-01 10:54:44 UTC (rev 51234)
@@ -1,15 +1,18 @@
-import date
-import gis
-import gmath
-import proj
-import imagery
-import vector
-import display
-import stats
-import dbmi
-import g3d
-import arraystats
-import cluster
-import trans
-import vedit
-
+__all__ = [
+    'arraystats',
+    'cluster',
+    'date',
+    'dbmi',
+    'display',
+    'g3d',
+    'gis',
+    'gmath',
+    'imagery',
+    'nviz',
+    'ogsf',
+    'proj',
+    'stats',
+    'trans',
+    'vector',
+    'vedit'
+]



More information about the grass-commit mailing list