Submitter | phabricator |
---|---|
Date | Sept. 7, 2019, 9:27 a.m. |
Message ID | <differential-rev-PHID-DREV-6sofi2renjhau74ieyjl-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/41510/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/revlogutils/flagutil.py b/mercurial/revlogutils/flagutil.py --- a/mercurial/revlogutils/flagutil.py +++ b/mercurial/revlogutils/flagutil.py @@ -91,6 +91,8 @@ def _processflags(self, text, flags, operation, raw=False): """deprecated entry point to access flag processors""" + msg = ('_processflag(...) use the specialized variant') + util.nouideprecwarn(msg, '5.2', stacklevel=2) if raw: return text, self._processflagsraw(text, flags) elif operation == 'read':