##// END OF EJS Templates
py3: use unicode literals in changelog.py...
Pulkit Goyal -
r29696:2f64e5a6 default
parent child Browse files
Show More
@@ -138,9 +138,10 b' def _delayopener(opener, target, buf):'
138 return appender(opener, name, mode, buf)
138 return appender(opener, name, mode, buf)
139 return _delay
139 return _delay
140
140
141 _changelogrevision = collections.namedtuple('changelogrevision',
141 _changelogrevision = collections.namedtuple(u'changelogrevision',
142 ('manifest', 'user', 'date',
142 (u'manifest', u'user', u'date',
143 'files', 'description', 'extra'))
143 u'files', u'description',
144 u'extra'))
144
145
145 class changelogrevision(object):
146 class changelogrevision(object):
146 """Holds results of a parsed changelog revision.
147 """Holds results of a parsed changelog revision.
@@ -151,8 +152,8 b' class changelogrevision(object):'
151 """
152 """
152
153
153 __slots__ = (
154 __slots__ = (
154 '_offsets',
155 u'_offsets',
155 '_text',
156 u'_text',
156 )
157 )
157
158
158 def __new__(cls, text):
159 def __new__(cls, text):
General Comments 0
You need to be logged in to leave comments. Login now