From patchwork Sat Sep 7 17:08:20 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D6806: flagprocessors: _processflags From: phabricator X-Patchwork-Id: 41555 Message-Id: <9b29f7b28511252d033aa9381ab9e7a0@localhost.localdomain> To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Sat, 7 Sep 2019 17:08:20 +0000 Closed by commit rHG519b45603880: flagprocessors: deprecate _processflags (authored by marmoute). This revision was automatically updated to reflect the committed changes. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6806?vs=16411&id=16445 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6806/new/ REVISION DETAIL https://phab.mercurial-scm.org/D6806 AFFECTED FILES mercurial/revlogutils/flagutil.py CHANGE DETAILS To: marmoute, yuja, durin42, #hg-reviewers, indygreg Cc: mercurial-devel 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':