[Request] [+ ] D11343: dirstate: also wrap the new method in `dirstatenonnormalcheck`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Thu Aug 26 14:20:33 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
The goal of this is to make sure we set the data right, so we need to make sure
it run after the new method, that we actually call, in addition to the old one,
that we no longer call.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11343
AFFECTED FILES
contrib/dirstatenonnormalcheck.py
CHANGE DETAILS
diff --git a/contrib/dirstatenonnormalcheck.py b/contrib/dirstatenonnormalcheck.py
--- a/contrib/dirstatenonnormalcheck.py
+++ b/contrib/dirstatenonnormalcheck.py
@@ -67,3 +67,12 @@
extensions.wrapfunction(dirstatecl, 'remove', _checkdirstate)
extensions.wrapfunction(dirstatecl, 'merge', _checkdirstate)
extensions.wrapfunction(dirstatecl, 'drop', _checkdirstate)
+ extensions.wrapfunction(dirstatecl, 'set_tracked', _checkdirstate)
+ extensions.wrapfunction(dirstatecl, 'set_untracked', _checkdirstate)
+ extensions.wrapfunction(
+ dirstatecl, 'set_possibly_dirty', _checkdirstate
+ )
+ extensions.wrapfunction(
+ dirstatecl, 'update_file_p1', _checkdirstate
+ )
+ extensions.wrapfunction(dirstatecl, 'update_file', _checkdirstate)
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20210826/851b5c5b/attachment-0001.html>
More information about the Mercurial-patches
mailing list