|
|
@@ -480,7 +480,7 @@ class Table(object): |
|
|
|
|
|
|
|
def __getitem__(self, row): |
|
|
|
"""Extract timestamps from a row, with table[n] notation.""" |
|
|
|
if (row is None or row < 0 or row >= self.nrows): |
|
|
|
if row < 0 or row >= self.nrows: |
|
|
|
raise IndexError("Index out of range") |
|
|
|
(subdir, filename, offset, count) = self._offset_from_row(row) |
|
|
|
f = self.file_open(subdir, filename) |
|
|
|