view mercurial/thirdparty/cbor/cbor2/__init__.py @ 45275:8e8d513941b4

merge: introduce 'commitinfo' in mergeresult commitinfo will be used to pass information which is required on commit phase from the merge phase. One common example is, merge chooses filenode from second parent and we need to tell commit to choose that. Right now this one and related cases are not very neatly implement and there is no clear line on how to pass on such information. Upcoming patches will try to work on in this area and make things easier. Differential Revision: https://phab.mercurial-scm.org/D8742
author Pulkit Goyal <7895pulkit@gmail.com>
date Tue, 14 Jul 2020 16:21:08 +0530
parents 4bd73a955ab0
children
line wrap: on
line source

from .decoder import load, loads, CBORDecoder, CBORDecodeError  # noqa
from .encoder import dump, dumps, CBOREncoder, CBOREncodeError, shareable_encoder  # noqa
from .types import CBORTag, CBORSimpleValue, undefined  # noqa