29,30c29
< PyGDChart is an interface to the gdchart graphing library. 
< gdchart2A.py is contains updates that mosixChart needs in order to function. I have tried to contact Nullcube to update their files, but I have recieved no response. Hence, gdchart2A, as much is I dislike confusing things. -Todd
---
> PyGDChart is an interface to the gdchart graphing library.
54d52
<     #print 'TDGDEBUG _uniformLength lst = %s' % str(lst)
56d53
<     #print 'TDGDEBUG _uniformLength baselist = %s' % str(baselist)
71d67
<     #print 'TDGDEBUG _flattenList baselist = %s' % str(baselist)
74d69
<     #print 'TDGDEBUG _flattenList flat = %s' % str(flat)
617,619c612,620
<             Set the data to graph. This method takes a set of lists of data,
<             that should all be of the same length. I.e.
<                 x.setData([1, 2, 3], [4, 5, 6])
---
>             Set the data to graph. This method takes a list of lists (of data),
>             that should all be of the same length, e.g:
>                 x.setData([[1, 2, 3], [4, 5, 6]])
> 		chartdata = [[1, 2, 3], [4, 5, 6]]
> 		x.setData(chartdata)
> 	    Another way to say the above is : the chartdata sublists are the 
> 	    same length, e.g:
> 	    	len(chartdata[0]) == 3 #len([1, 2, 3])
> 	    	len(chartdata[1]) == 3 #len([4, 5, 6])
621,622c622
<     	#print 'TDGDEBUG setData data = %s' % str(data)
<         self._numsets = len(data[0])
---
>         self._numsets = len(data[0]) #discard tuple generated garbage
624d623
< 	#print "TDGDEBUG self._datalen = %s" % self._datalen
