Comments
Patch
@@ -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
@@ -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
@@ -183,8 +183,8 @@
"""
__slots__ = (
- u'_offsets',
- u'_text',
+ r'_offsets',
+ r'_text',
)
def __new__(cls, text):