mercurial/thirdparty/cbor/__init__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 10 Jul 2023 19:34:04 +0200
changeset 50836 02eae2df911a
parent 37216 3bc609bcfe77
permissions -rw-r--r--
wrapfunction: use sysstr instead of bytes as argument in various tests This is as valid and simpler, it will help us to eventually get ride of `safehasattr`.

from .cbor2 import (
    CBORDecodeError,
    CBORDecoder,
    CBOREncodeError,
    CBOREncoder,
    dump,
    dumps,
    load,
    loads,
)