[cig-commits] r5198 - short/3D/PyLith/trunk/pylith/topology

brad at geodynamics.org brad at geodynamics.org
Tue Nov 7 17:08:00 PST 2006


Author: brad
Date: 2006-11-07 17:08:00 -0800 (Tue, 07 Nov 2006)
New Revision: 5198

Modified:
   short/3D/PyLith/trunk/pylith/topology/Mesh.py
   short/3D/PyLith/trunk/pylith/topology/MeshImporter.py
   short/3D/PyLith/trunk/pylith/topology/__init__.py
Log:
Did trivial cleanup (handle -> cppHandle).

Modified: short/3D/PyLith/trunk/pylith/topology/Mesh.py
===================================================================
--- short/3D/PyLith/trunk/pylith/topology/Mesh.py	2006-11-08 01:07:13 UTC (rev 5197)
+++ short/3D/PyLith/trunk/pylith/topology/Mesh.py	2006-11-08 01:08:00 UTC (rev 5198)
@@ -47,7 +47,7 @@
   def __init__(self, name="mesh"):
     """Constructor."""
     Component.__init__(self, name, facility="mesh")
-    self.handle = None
+    self.cppHandle = None
     return
 
 
@@ -58,7 +58,4 @@
     return
   
 
-# version
-__id__ = "$Id$"
-
 # End of file 

Modified: short/3D/PyLith/trunk/pylith/topology/MeshImporter.py
===================================================================
--- short/3D/PyLith/trunk/pylith/topology/MeshImporter.py	2006-11-08 01:07:13 UTC (rev 5197)
+++ short/3D/PyLith/trunk/pylith/topology/MeshImporter.py	2006-11-08 01:08:00 UTC (rev 5198)
@@ -67,7 +67,4 @@
     return
   
 
-# version
-__id__ = "$Id$"
-
 # End of file 

Modified: short/3D/PyLith/trunk/pylith/topology/__init__.py
===================================================================
--- short/3D/PyLith/trunk/pylith/topology/__init__.py	2006-11-08 01:07:13 UTC (rev 5197)
+++ short/3D/PyLith/trunk/pylith/topology/__init__.py	2006-11-08 01:08:00 UTC (rev 5198)
@@ -13,9 +13,8 @@
 ## @file pylith/topology/__init__.py
 ## @brief Python PyLith finite-element topology module initialization
 
-all = ['Mesh']
+all = ['Mesh',
+       'MeshGenerator',
+       'MeshImporter']
 
-# version
-__id__ = "$Id$"
-
 # End of file



More information about the cig-commits mailing list