[Updated] D11343: dirstate: also wrap the new method in `dirstatenonnormalcheck`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Fri Aug 27 12:39:14 UTC 2021
Closed by commit rHG74a8d5c6fdc6: dirstate: also wrap the new method in `dirstatenonnormalcheck` (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/D11343?vs=30059&id=30100
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D11343/new/
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, Alphare
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20210827/9a898c23/attachment-0002.html>
More information about the Mercurial-patches
mailing list