Skip to content
Snippets Groups Projects

state: allow to unvendor cbor

Merged Georges Racinet requested to merge topic/stable/unvendor-cbor into branch/stable
2 unresolved threads
1 file
+ 8
1
Compare changes
  • Side-by-side
  • Inline
+ 8
1
@@ -19,7 +19,14 @@
import errno
import struct
from .thirdparty import cbor
# use the vendored cbor if available, and if not, try and
# use an externally provided one (would typically be the case
# with distribution packages)
try:
from .thirdparty import cbor
cbor.__doc__ # trigger ImportError immediately
except ImportError:
import cbor
from mercurial import (
error,
Loading