Weird bug with an integer

David Anderson zerty.david at gmail.com
Thu May 8 21:44:39 EDT 2008


Look this slice of code:

rowN = int(0)
        for row in rows:
            success = self.resultGrid.AppendRows();
            colN = int(0)
            for col in row:
                self.resultGrid.SetReadOnly(self.resultGrid.GetNumberRows()
- 1,colN,isReadOnly = True)
                print rowN
                self.resultGrid.SetCellValue(int(rowN),int(colN),col)

I am getting this output:
0
0
0
0
0
0
0
(1,)
Traceback (most recent call last):
     in populateGrid
    self.resultGrid.SetCellValue(int(rowN),int(colN),col)
TypeError: int() argument must be a string or a number, not 'tuple'


Why is this happening?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20080508/8b21fa56/attachment.html>


More information about the Python-list mailing list