Ignore:
Timestamp:
Apr 26, 2009, 5:35:16 PM (16 years ago)
Author:
rwilson
Message:

Patong beach validation changes plus back-merge changes.

Location:
branches/numpy_misc/tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/numpy_misc/tools/plotcsv/installer/plotcsv.nsi

    r6480 r6906  
    11!define PRODUCT_NAME "plotcsv"
    2 !define PRODUCT_VERSION "0.4"
     2!define PRODUCT_VERSION "0.5"
    33!define ICON_FILE "plotcsv.ico"
    44
  • branches/numpy_misc/tools/plotcsv/plotcsv.py

    r6482 r6906  
    5454# program name and version
    5555APP_NAME = 'plotcsv'
    56 APP_VERSION = '0.4'
     56APP_VERSION = '0.5'
    5757
    5858# name of the configuration filename
     
    624624                       title=self.txtTitle.GetValue(),
    625625                       legend=self.chkLegend.GetValue(),
    626                        legend_path=self.chkLegendPath.GetValue())
     626                       legend_path=self.chkLegendPath.GetValue())
     627            # hide problem with wxPython and matplotlib - close app!
     628            self.Close(True)
    627629           
    628630    def error(self, msg):
  • branches/numpy_misc/tools/write_large_files/rw_big_file.py

    r6817 r6906  
    5959def read_file(filename, variable_size, num_variables):
    6060    # create a data array slice
    61     slice_array_mask = numpy.ones((XDIM,), 'd')
     61    slice_array_mask = num.ones((XDIM,), 'd')
    6262
    6363    # if timing file read, get start time
     
    148148
    149149    # create a data array slice
    150     slice_array_mask = numpy.ones((XDIM,), 'd')
     150    slice_array_mask = num.ones((XDIM,), 'd')
    151151
    152152    # if timing file write, remember start time
Note: See TracChangeset for help on using the changeset viewer.