(self)
| 1075 | gzip.GzipFile.__init__(self, mode="rb", fileobj=self.io) |
| 1076 | |
| 1077 | def close(self): |
| 1078 | try: |
| 1079 | gzip.GzipFile.close(self) |
| 1080 | finally: |
| 1081 | self.io.close() |
| 1082 | |
| 1083 | |
| 1084 | # -------------------------------------------------------------------- |