コード例 #1
0
ファイル: libraries.py プロジェクト: urielz/quodlibet
def dump_items(filename, items):
    """Pickle items to disk.

    Doesn't handle exceptions.
    """

    dirname = os.path.dirname(filename)
    mkdir(dirname)

    with atomic_save(filename, "wb") as fileobj:
        # While protocol 2 is usually faster it uses __setitem__
        # for unpickle and we override it to clear the sort cache.
        # This roundtrip makes it much slower, so we use protocol 1
        # unpickle numbers (py2.7):
        #   2: 0.66s / 2 + __set_item__: 1.18s / 1 + __set_item__: 0.72s
        # see: http://bugs.python.org/issue826897
        pickle.dump(items, fileobj, 1)
コード例 #2
0
def dump_items(filename, items):
    """Pickle items to disk.

    Doesn't handle exceptions.
    """

    dirname = os.path.dirname(filename)
    mkdir(dirname)

    with atomic_save(filename, "wb") as fileobj:
        # While protocol 2 is usually faster it uses __setitem__
        # for unpickle and we override it to clear the sort cache.
        # This roundtrip makes it much slower, so we use protocol 1
        # unpickle numbers (py2.7):
        #   2: 0.66s / 2 + __set_item__: 1.18s / 1 + __set_item__: 0.72s
        # see: http://bugs.python.org/issue826897
        pickle.dump(items, fileobj, 1)
コード例 #3
0
ファイル: audiofeeds.py プロジェクト: markshep/quodlibet
 def write(klass):
     feeds = [row[0] for row in klass.__feeds]
     with open(FEEDS, "wb") as f:
         pickle.dump(feeds, f, pickle.HIGHEST_PROTOCOL)
コード例 #4
0
ファイル: audiofeeds.py プロジェクト: bossjones/quodlibet
 def write(klass):
     feeds = [row[0] for row in klass.__feeds]
     with open(FEEDS, "wb") as f:
         pickle.dump(feeds, f, pickle.HIGHEST_PROTOCOL)