[Updated] D11348: dirstate: drop the deprecated `remove` method
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Fri Aug 27 12:40:34 UTC 2021
Closed by commit rHG3911c61f09c6: dirstate: drop the deprecated `remove` method (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/D11348?vs=30064&id=30106
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D11348/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D11348
AFFECTED FILES
contrib/dirstatenonnormalcheck.py
hgext/sparse.py
mercurial/dirstate.py
mercurial/interfaces/dirstate.py
CHANGE DETAILS
diff --git a/mercurial/interfaces/dirstate.py b/mercurial/interfaces/dirstate.py
--- a/mercurial/interfaces/dirstate.py
+++ b/mercurial/interfaces/dirstate.py
@@ -132,9 +132,6 @@
def copies():
pass
- def remove(f):
- '''Mark a file removed.'''
-
def merge(f):
'''Mark a file merged.'''
diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py
--- a/mercurial/dirstate.py
+++ b/mercurial/dirstate.py
@@ -762,31 +762,6 @@
self._addpath(filename, added=True)
self._map.copymap.pop(filename, None)
- def remove(self, f):
- '''Mark a file removed'''
- if self.pendingparentchange():
- util.nouideprecwarn(
- b"do not use `remove` insde of update/merge context."
- b" Use `update_file` or `update_file_p1`",
- b'6.0',
- stacklevel=2,
- )
- else:
- util.nouideprecwarn(
- b"do not use `remove` outside of update/merge context."
- b" Use `set_untracked`",
- b'6.0',
- stacklevel=2,
- )
- self._dirty = True
- self._updatedfiles.add(f)
- entry = self._map.get(f)
- if entry is None:
- # Assuming we are in a update/merge case
- self.update_file(f, p1_tracked=True, wc_tracked=False)
- else:
- self.set_untracked(f)
-
def merge(self, f):
'''Mark a file merged.'''
if self.pendingparentchange():
diff --git a/hgext/sparse.py b/hgext/sparse.py
--- a/hgext/sparse.py
+++ b/hgext/sparse.py
@@ -258,7 +258,6 @@
b'set_tracked',
b'set_untracked',
b'copy',
- b'remove',
b'merge',
]
hint = _(
diff --git a/contrib/dirstatenonnormalcheck.py b/contrib/dirstatenonnormalcheck.py
--- a/contrib/dirstatenonnormalcheck.py
+++ b/contrib/dirstatenonnormalcheck.py
@@ -60,7 +60,6 @@
# We don't do all these checks when paranoid is disable as it would
# make the extension run very slowly on large repos
extensions.wrapfunction(dirstatecl, 'write', _checkdirstate)
- extensions.wrapfunction(dirstatecl, 'remove', _checkdirstate)
extensions.wrapfunction(dirstatecl, 'merge', _checkdirstate)
extensions.wrapfunction(dirstatecl, 'drop', _checkdirstate)
extensions.wrapfunction(dirstatecl, 'set_tracked', _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/3fb23dce/attachment-0002.html>
More information about the Mercurial-patches
mailing list