Earlier, filtertable contains the filtername and the corresponding function to
calculate filtered set for that filter. This patch make filtertable also store
the visibility exceptions for that filter. filtertable was a dictionary with
filtername as the key and function as the value, after this patch, the value is
a tuple of form (fn, visibilityexceptions).
Details
Details
- Reviewers
yuja - Group Reviewers
hg-reviewers
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Lint Skipped - Unit
Unit Tests Skipped
Event Timeline
mercurial/repoview.py | ||
---|---|---|
145 | So this is global across repositories and permanently cached. Can't we store the "exceptions" in repoview? I think their lifetime |
So this is global across repositories and permanently cached.
Can't we store the "exceptions" in repoview? I think their lifetime
should be the same.