示例#1
0
def try_gunzip(data):
    try:
        data = gunzip(data)
    except IOError as zlib.error:
        pass
示例#2
0
def try_gunzip(data):
    try:
        data = gunzip(data)
    except IOError, zlib.error:
        pass