# HG changeset patch # User Pierre-Yves David # Date 2014-08-15 16:41:30 # Node ID 525cde5d954d689d3f5807a777ce1a7914917ec2 # Parent 3f93eff1de579425561dab22e10d8c0cb5346bda obsmarker: add a `flags` method We introduce a proper method to access the flag information. diff --git a/mercurial/cmdutil.py b/mercurial/cmdutil.py --- a/mercurial/cmdutil.py +++ b/mercurial/cmdutil.py @@ -1184,7 +1184,7 @@ def showmarker(ui, marker): for repl in marker.succnodes(): ui.write(' ') ui.write(hex(repl)) - ui.write(' %X ' % marker._data[2]) + ui.write(' %X ' % marker.flags()) ui.write('{%s}' % (', '.join('%r: %r' % t for t in sorted(marker.metadata().items())))) ui.write('\n') diff --git a/mercurial/obsolete.py b/mercurial/obsolete.py --- a/mercurial/obsolete.py +++ b/mercurial/obsolete.py @@ -226,6 +226,10 @@ class marker(object): parts = self.metadata()['date'].split(' ') return (float(parts[0]), int(parts[1])) + def flags(self): + """The flags field of the marker""" + return self._data[2] + class obsstore(object): """Store obsolete markers