# HG changeset patch # User Gregory Szorc # Date 1536081762 25200 # Node ID 5bfab9400daf94c931ea25704a457d0d23097570 # Parent 9f51fd22ed504e208c07ee79de81164db75bf367 state: use our CBOR module This was the last consumer of the vendored CBOR package in core. Differential Revision: https://phab.mercurial-scm.org/D4471 diff -r 9f51fd22ed50 -r 5bfab9400daf mercurial/state.py --- a/mercurial/state.py Tue Aug 28 15:41:09 2018 -0700 +++ b/mercurial/state.py Tue Sep 04 10:22:42 2018 -0700 @@ -19,12 +19,13 @@ from __future__ import absolute_import -from .thirdparty import cbor - from . import ( error, util, ) +from .utils import ( + cborutil, +) class cmdstate(object): """a wrapper class to store the state of commands like `rebase`, `graft`, @@ -62,7 +63,8 @@ with self._repo.vfs(self.fname, 'wb', atomictemp=True) as fp: fp.write('%d\n' % version) - cbor.dump(data, fp, canonical=True) + for chunk in cborutil.streamencode(data): + fp.write(chunk) def _read(self): """reads the state file and returns a dictionary which contain @@ -73,7 +75,8 @@ except ValueError: raise error.CorruptedState("unknown version of state file" " found") - return cbor.load(fp) + + return cborutil.decodeall(fp.read())[0] def delete(self): """drop the state file if exists"""