Changeset 71

Show
Ignore:
Timestamp:
12/18/07 02:33:11 (4 years ago)
Author:
lgs
Message:

Rename the test function to reflect the type of chart it generates

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/examples/linechart.py

    r34 r71  
    2424from lines import lines 
    2525 
    26 def barChart(output): 
     26def lineChart(output): 
    2727    surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, 400, 200) 
    2828 
     
    6161if __name__ == '__main__': 
    6262    output = sys.argv[1] if len(sys.argv) > 1 else 'linechart.png' 
    63     barChart(output) 
     63    lineChart(output)