# HG changeset patch # User Gregory Szorc # Date 1551559864 28800 # Node ID ae189674bdadd71856d3262282dc40db6ae16c84 # Parent c6a5009ed04a91b5328b6012b4d6a3a86f03d691 global: use raw strings for __slots__ Otherwise Python 2 will coerce unicode to str at module load time. We don't like automatic string coercions. Differential Revision: https://phab.mercurial-scm.org/D6046 diff -r c6a5009ed04a -r ae189674bdad mercurial/changelog.py --- a/mercurial/changelog.py Thu Feb 28 07:45:51 2019 -0800 +++ b/mercurial/changelog.py Sat Mar 02 12:51:04 2019 -0800 @@ -183,8 +183,8 @@ """ __slots__ = ( - u'_offsets', - u'_text', + r'_offsets', + r'_text', ) def __new__(cls, text): diff -r c6a5009ed04a -r ae189674bdad mercurial/statprof.py --- a/mercurial/statprof.py Thu Feb 28 07:45:51 2019 -0800 +++ b/mercurial/statprof.py Sat Mar 02 12:51:04 2019 -0800 @@ -203,7 +203,7 @@ class CodeSite(object): cache = {} - __slots__ = (u'path', u'lineno', u'function', u'source') + __slots__ = (r'path', r'lineno', r'function', r'source') def __init__(self, path, lineno, function): assert isinstance(path, bytes) @@ -263,7 +263,7 @@ return r'%s:%s' % (self.filename(), self.function) class Sample(object): - __slots__ = (u'stack', u'time') + __slots__ = (r'stack', r'time') def __init__(self, stack, time): self.stack = stack diff -r c6a5009ed04a -r ae189674bdad mercurial/util.py --- a/mercurial/util.py Thu Feb 28 07:45:51 2019 -0800 +++ b/mercurial/util.py Sat Mar 02 12:51:04 2019 -0800 @@ -1216,7 +1216,7 @@ Holds a reference to nodes on either side as well as a key-value pair for the dictionary entry. """ - __slots__ = (u'next', u'prev', u'key', u'value', u'cost') + __slots__ = (r'next', r'prev', r'key', r'value', r'cost') def __init__(self): self.next = None