[GRASS-SVN] r51231 - grass/branches/develbranch_6/lib/python/ctypes

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Apr 1 06:46:10 EDT 2012


Author: martinl
Date: 2012-04-01 03:46:09 -0700 (Sun, 01 Apr 2012)
New Revision: 51231

Modified:
   grass/branches/develbranch_6/lib/python/ctypes/__init__.py
Log:
Make grass.lib a package rather than a module
     (glynn: r51229 merged from trunk)


Modified: grass/branches/develbranch_6/lib/python/ctypes/__init__.py
===================================================================
--- grass/branches/develbranch_6/lib/python/ctypes/__init__.py	2012-04-01 02:50:13 UTC (rev 51230)
+++ grass/branches/develbranch_6/lib/python/ctypes/__init__.py	2012-04-01 10:46:09 UTC (rev 51231)
@@ -1,15 +1,16 @@
-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__ = [
+    'date',
+    'gis',
+    'gmath',
+    'proj',
+    'imagery',
+    'vector',
+    'display',
+    'stats',
+    'dbmi',
+    'g3d',
+    'arraystats',
+    'cluster',
+    'trans',
+    'vedit'
+    ]



More information about the grass-commit mailing list