D2109: py3: make sure we return str from __repr__

2018-02-12 Thread pulkit (Pulkit Goyal)
This revision was automatically updated to reflect the committed changes. Closed by commit rHGc4fa47f880d3: py3: make sure we return str from __repr__ (authored by pulkit, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D2109?vs=5478=5482

D2109: py3: make sure we return str from __repr__

2018-02-12 Thread pulkit (Pulkit Goyal)
pulkit updated this revision to Diff 5478. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D2109?vs=5372=5478 REVISION DETAIL https://phab.mercurial-scm.org/D2109 AFFECTED FILES mercurial/match.py CHANGE DETAILS diff --git a/mercurial/match.py

D2109: py3: make sure we return str from __repr__

2018-02-11 Thread yuja (Yuya Nishihara)
yuja requested changes to this revision. yuja added inline comments. This revision now requires changes to proceed. INLINE COMMENTS > match.py:456 > def __repr__(self): > -return ('' % self._files) > +return (r'' % self._files) > Maybe you know, `'%r' % [bytes, ...]` is

D2109: py3: make sure we return str from __repr__

2018-02-11 Thread pulkit (Pulkit Goyal)
pulkit created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY 1. skip-blame because we are just adding r'' prefixes REPOSITORY rHG Mercurial REVISION DETAIL https://phab.mercurial-scm.org/D2109 AFFECTED FILES