def try_gunzip(data): try: data = gunzip(data) except IOError as zlib.error: pass
def try_gunzip(data): try: data = gunzip(data) except IOError, zlib.error: pass