Ignore:
Timestamp:
May 14, 2009, 2:24:54 PM (16 years ago)
Author:
rwilson
Message:

Back-merge from Numeric trunk.

Location:
branches/numpy/anuga/load_mesh
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/numpy/anuga/load_mesh/loadASCII.py

    r6904 r7035  
    11011101def take_points(dict, indices_to_keep):
    11021102    dict = point_atts2array(dict)
     1103    # FIXME maybe the points data structure should become a class?
    11031104    dict['pointlist'] = num.take(dict['pointlist'], indices_to_keep, axis=0)
    11041105
  • branches/numpy/anuga/load_mesh/test_loadASCII.py

    r6904 r7035  
    260260    def test_load_bad_no_file_tsh(self):
    261261        fileName = tempfile.mktemp('.tsh')
     262        # use self.faileUnlessRaises(IOError, import_mesh_file(fileName))
    262263        try:
    263264            dict = import_mesh_file(fileName)
Note: See TracChangeset for help on using the changeset viewer.