···148148 # so it will raise a custom exception.
149149 error = None
150150 try:
151151- col = table.getCol(3)
151151+ _col = table.getCol(3)
152152 except Exception as e:
153153 error = str(e)
154154 assert error == "Col 3 is out of range"
···186186 # so it will raise a custom exception.
187187 error = None
188188 try:
189189- row = table.getRow(10)
189189+ _row = table.getRow(10)
190190 except Exception as e:
191191 error = str(e)
192192 assert error == "Row 10 is out of range"
···199199 # there is no such header, so it will raise a custom exception.
200200 error = None
201201 try:
202202- i = table.getHeaderIndex("Missing")
202202+ _i = table.getHeaderIndex("Missing")
203203 except Exception as e:
204204 error = str(e)
205205 # assert(error == 'No such header: Missing')