# HG changeset patch # User Gregory Szorc # Date 1496978893 25200 # Node ID 48d1e1214d8cd579252df2c6b219ece67debe7c8 # Parent 999aa9cfb4d34934cfb2ce71c223615fee0cc3d9 repoview: remove special casing of "requirements" At the time this code was introduced (3a6ddacb7198), the inline comment was true. This changed in e3a928bd1cd4. The proxy is no longer needed. diff -r 999aa9cfb4d3 -r 48d1e1214d8c mercurial/repoview.py --- a/mercurial/repoview.py Wed Jun 07 19:32:16 2017 +0100 +++ b/mercurial/repoview.py Thu Jun 08 20:28:13 2017 -0700 @@ -243,10 +243,3 @@ def __delattr__(self, attr): return delattr(self._unfilteredrepo, attr) - - # The `requirements` attribute is initialized during __init__. But - # __getattr__ won't be called as it also exists on the class. We need - # explicit forwarding to main repo here - @property - def requirements(self): - return self._unfilteredrepo.requirements