Changeset 7035 for branches/numpy/anuga/load_mesh
- Timestamp:
- May 14, 2009, 2:24:54 PM (16 years ago)
- Location:
- branches/numpy/anuga/load_mesh
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/numpy/anuga/load_mesh/loadASCII.py
r6904 r7035 1101 1101 def take_points(dict, indices_to_keep): 1102 1102 dict = point_atts2array(dict) 1103 # FIXME maybe the points data structure should become a class? 1103 1104 dict['pointlist'] = num.take(dict['pointlist'], indices_to_keep, axis=0) 1104 1105 -
branches/numpy/anuga/load_mesh/test_loadASCII.py
r6904 r7035 260 260 def test_load_bad_no_file_tsh(self): 261 261 fileName = tempfile.mktemp('.tsh') 262 # use self.faileUnlessRaises(IOError, import_mesh_file(fileName)) 262 263 try: 263 264 dict = import_mesh_file(fileName)
Note: See TracChangeset
for help on using the changeset viewer.