Details
Details
- Reviewers
pulkit - Group Reviewers
hg-reviewers - Commits
- rHGd30a19d10441: match: fix up a repr to not crash on Python 3
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Lint Skipped - Unit
Unit Tests Skipped
Event Timeline
mercurial/match.py | ||
---|---|---|
1176 | sorted() seems to return a list on py3, so maybe the list() call is unnecessary? |
mercurial/match.py | ||
---|---|---|
1176 | I could swear I've seen cases where it's not, but maybe we can prune this out after the freeze? |
mercurial/match.py | ||
---|---|---|
1176 | Yes, after or not at all :) I mostly pointed it out so you know for future patches (if I'm even correct about it) |
sorted() seems to return a list on py3, so maybe the list() call is unnecessary?