(self, chunk)
| 312 | if chunk.c == handle: return chunk |
| 313 | |
| 314 | def closeChunk(self, chunk): |
| 315 | try: |
| 316 | self.m.remove_handle(chunk.c) |
| 317 | except pycurl.error, e: |
| 318 | self.log.debug("Error removing chunk: %s" % str(e)) |
| 319 | finally: |
| 320 | chunk.close() |
| 321 | |
| 322 | def close(self): |
| 323 | """ cleanup """ |