Changeset 8716


Ignore:
Timestamp:
Feb 26, 2013, 10:23:52 AM (12 years ago)
Author:
steve
Message:

Making a commit before playing with netcdf4. Might have to come back to this.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/abstract_2d_finite_volumes/test_gauge.py

    r8715 r8716  
    126126        point1_answers_array = [[0.0,0.0,1.0,6.0,-5.0,3.0,4.0], [2.0,2.0/3600.,10.0,15.0,-5.0,3.0,4.0]]
    127127        point1_filename = 'gauge_point1.csv'
    128         point1_handle = file(point1_filename)
     128        point1_handle = open(point1_filename)
    129129        point1_reader = reader(point1_handle)
    130130        point1_reader.next()
     
    140140        point2_answers_array = [[0.0,0.0,1.0,1.5,-0.5,3.0,4.0], [2.0,2.0/3600.,10.0,10.5,-0.5,3.0,4.0]]
    141141        point2_filename = 'gauge_point2.csv'
    142         point2_handle = file(point2_filename)
     142        point2_handle = open(point2_filename)
    143143        point2_reader = reader(point2_handle)
    144144        point2_reader.next()
Note: See TracChangeset for help on using the changeset viewer.