annotate mercurial/thirdparty/cbor/__init__.py @ 48674:f7086f6173f8 stable

dirstate-v2: rename the configuration to enable the format The rename of the old experimental name was overlooked before the 6.0 release. We rename everything to use the new name (and keep the released name as an alias for compatibility). Differential Revision: https://phab.mercurial-scm.org/D12129
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 01 Feb 2022 16:36:20 +0100
parents 3bc609bcfe77
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
37214
3bc609bcfe77 cbor: import CBORDecoder and CBOREncoder
Gregory Szorc <gregory.szorc@gmail.com>
parents: 37128
diff changeset
1 from .cbor2 import (
3bc609bcfe77 cbor: import CBORDecoder and CBOREncoder
Gregory Szorc <gregory.szorc@gmail.com>
parents: 37128
diff changeset
2 CBORDecodeError,
3bc609bcfe77 cbor: import CBORDecoder and CBOREncoder
Gregory Szorc <gregory.szorc@gmail.com>
parents: 37128
diff changeset
3 CBORDecoder,
3bc609bcfe77 cbor: import CBORDecoder and CBOREncoder
Gregory Szorc <gregory.szorc@gmail.com>
parents: 37128
diff changeset
4 CBOREncodeError,
3bc609bcfe77 cbor: import CBORDecoder and CBOREncoder
Gregory Szorc <gregory.szorc@gmail.com>
parents: 37128
diff changeset
5 CBOREncoder,
3bc609bcfe77 cbor: import CBORDecoder and CBOREncoder
Gregory Szorc <gregory.szorc@gmail.com>
parents: 37128
diff changeset
6 dump,
3bc609bcfe77 cbor: import CBORDecoder and CBOREncoder
Gregory Szorc <gregory.szorc@gmail.com>
parents: 37128
diff changeset
7 dumps,
3bc609bcfe77 cbor: import CBORDecoder and CBOREncoder
Gregory Szorc <gregory.szorc@gmail.com>
parents: 37128
diff changeset
8 load,
3bc609bcfe77 cbor: import CBORDecoder and CBOREncoder
Gregory Szorc <gregory.szorc@gmail.com>
parents: 37128
diff changeset
9 loads,
3bc609bcfe77 cbor: import CBORDecoder and CBOREncoder
Gregory Szorc <gregory.szorc@gmail.com>
parents: 37128
diff changeset
10 )