mercurial/bookmarks.py
changeset 41533 0f64091cc851
parent 41365 876494fd967d
child 42311 ec5bd3ab26bf
equal deleted inserted replaced
41532:bd3f03d8cc9f 41533:0f64091cc851
    42     """
    42     """
    43     fp, pending = txnutil.trypending(repo.root, repo.vfs, 'bookmarks')
    43     fp, pending = txnutil.trypending(repo.root, repo.vfs, 'bookmarks')
    44     return fp
    44     return fp
    45 
    45 
    46 class bmstore(object):
    46 class bmstore(object):
    47     """Storage for bookmarks.
    47     r"""Storage for bookmarks.
    48 
    48 
    49     This object should do all bookmark-related reads and writes, so
    49     This object should do all bookmark-related reads and writes, so
    50     that it's fairly simple to replace the storage underlying
    50     that it's fairly simple to replace the storage underlying
    51     bookmarks without having to clone the logic surrounding
    51     bookmarks without having to clone the logic surrounding
    52     bookmarks. This type also should manage the active bookmark, if
    52     bookmarks. This type also should manage the active bookmark, if