# HG changeset patch # User Martin von Zweigbergk # Date 1572991571 28800 # Node ID 625e7d1ffd1c7d952a372ab7e77b0bd88ee02b50 # Parent d630c5710801d4fabedf742a42c1a236b0da8b07 repoview: wrap changelog class when filtering The class doesn't yet do anything. I'll move the filter-aware overrides from the changelog class over one by one to this class in coming patches. That will leave the changelog class simpler and will centralize more of the filtering logic to repoview. I could not measure any performance difference. Differential Revision: https://phab.mercurial-scm.org/D7236 diff -r d630c5710801 -r 625e7d1ffd1c mercurial/repoview.py --- a/mercurial/repoview.py Tue Nov 05 14:00:46 2019 -0800 +++ b/mercurial/repoview.py Tue Nov 05 14:06:11 2019 -0800 @@ -221,6 +221,12 @@ def wrapchangelog(unfichangelog, filteredrevs): cl = copy.copy(unfichangelog) cl.filteredrevs = filteredrevs + + class filteredchangelog(cl.__class__): + pass + + cl.__class__ = filteredchangelog + return cl