# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 2017-10-10 17:49:35 # Node ID 586645e0589c66feb2ea03c7eada658c60632972 # Parent 4889b84b15f2a64b0d9452c795da0e5eb09568bc repoview: remove incorrect documentation of the function In repoview.py, computeunserved() and computemutable() functions had the same documentation. The documentation of computemutable() is wrong. I was unable to write documentation for the function but it's better to not having the documentation than having it wrong. Differential Revision: https://phab.mercurial-scm.org/D1016 diff --git a/mercurial/repoview.py b/mercurial/repoview.py --- a/mercurial/repoview.py +++ b/mercurial/repoview.py @@ -99,9 +99,6 @@ def computeunserved(repo): return hiddens def computemutable(repo): - """compute the set of revision that should be filtered when used a server - - Secret and hidden changeset should not pretend to be here.""" assert not repo.changelog.filteredrevs # fast check to avoid revset call on huge repo if any(repo._phasecache.phaseroots[1:]):