Mercurial > hg-stable
diff hgext/convert/subversion.py @ 34146:0fa781320203
doctest: bulk-replace string literals with b'' for Python 3
Our code transformer can't rewrite string literals in docstrings, and I
don't want to make the transformer more complex.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sun, 03 Sep 2017 14:32:11 +0900 |
parents | 067add650129 |
children | b88878720526 |
line wrap: on
line diff
--- a/hgext/convert/subversion.py Thu Sep 07 22:36:54 2017 +0900 +++ b/hgext/convert/subversion.py Sun Sep 03 14:32:11 2017 +0900 @@ -61,16 +61,16 @@ def revsplit(rev): """Parse a revision string and return (uuid, path, revnum). - >>> revsplit('svn:a2147622-4a9f-4db4-a8d3-13562ff547b2' - ... '/proj%20B/mytrunk/mytrunk@1') + >>> revsplit(b'svn:a2147622-4a9f-4db4-a8d3-13562ff547b2' + ... b'/proj%20B/mytrunk/mytrunk@1') ('a2147622-4a9f-4db4-a8d3-13562ff547b2', '/proj%20B/mytrunk/mytrunk', 1) - >>> revsplit('svn:8af66a51-67f5-4354-b62c-98d67cc7be1d@1') + >>> revsplit(b'svn:8af66a51-67f5-4354-b62c-98d67cc7be1d@1') ('', '', 1) - >>> revsplit('@7') + >>> revsplit(b'@7') ('', '', 7) - >>> revsplit('7') + >>> revsplit(b'7') ('', '', 0) - >>> revsplit('bad') + >>> revsplit(b'bad') ('', '', 0) """ parts = rev.rsplit('@', 1)