(self)
| 135 | self.f.close() |
| 136 | |
| 137 | def statFile(self): |
| 138 | if os.path.exists(self.logfile): |
| 139 | s = os.stat(self.logfile) |
| 140 | return (s[stat.ST_CTIME], s[stat.ST_MTIME], s[stat.ST_SIZE]) |
| 141 | return None |
| 142 | |
| 143 | def poll(self): |
| 144 | if not self.started: |