##// END OF EJS Templates
changelog: inline trivial call for extra data unescaping
Matt Mackall -
r5745:234e40e6 default
parent child Browse files
Show More
@@ -16,16 +16,13 def _string_escape(text):
16 16 >>> s
17 17 'ab\\ncd\\\\\\\\n\\x00ab\\rcd\\\\\\n'
18 18 >>> res = _string_escape(s)
19 >>> s == _string_unescape(res)
19 >>> s == res.decode('string_escape')
20 20 True
21 21 """
22 22 # subset of the string_escape codec
23 23 text = text.replace('\\', '\\\\').replace('\n', '\\n').replace('\r', '\\r')
24 24 return text.replace('\0', '\\0')
25 25
26 def _string_unescape(text):
27 return text.decode('string_escape')
28
29 26 class appender:
30 27 '''the changelog index must be update last on disk, so we use this class
31 28 to delay writes to it'''
@@ -123,9 +120,8 class changelog(revlog):
123 120 def decode_extra(self, text):
124 121 extra = {}
125 122 for l in text.split('\0'):
126 if not l:
127 continue
128 k, v = _string_unescape(l).split(':', 1)
123 if l:
124 k, v = text.decode('string_escape').split(':', 1)
129 125 extra[k] = v
130 126 return extra
131 127
General Comments 0
You need to be logged in to leave comments. Login now