コード例 #1
0
ファイル: cache.py プロジェクト: rhel/webassets
def safe_unpickle(string):
    """Unpickle the string, or return ``None`` if that fails."""
    try:
        return pickle.loads(string)
    except:
        return None
コード例 #2
0
ファイル: cache.py プロジェクト: LChristakis/chalice-hunter
def safe_unpickle(string):
    """Unpickle the string, or return ``None`` if that fails."""
    try:
        return pickle.loads(string)
    except:
        return None