Skip to content
Snippets Groups Projects
Commit f57f7500 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

changelog: lazily parse user

Same strategy as before.

Revsets not accessing the user demonstrate a slight performance win:

desc(bug)
0.887169
0.910400
0.895514

date(2015)
0.878797
0.870697
0.820987

extra(rebase_source)
0.865446
0.841644
0.823811

date(2015) or branch(default)
0.968276
0.945792
0.910981
parent 959eadae
No related branches found
No related tags found
No related merge requests found
......@@ -156,7 +156,7 @@
'extra',
'files',
'_rawmanifest',
'user',
'_rawuser',
)
def __new__(cls, text):
......@@ -191,4 +191,7 @@
nl1 = text.index('\n')
self._rawmanifest = text[0:nl1]
nl2 = text.index('\n', nl1 + 1)
self._rawuser = text[nl1 + 1:nl2]
l = text[:doublenl].split('\n')
......@@ -194,5 +197,4 @@
l = text[:doublenl].split('\n')
self.user = encoding.tolocal(l[1])
tdata = l[2].split(' ', 2)
if len(tdata) != 3:
......@@ -217,6 +219,10 @@
return bin(self._rawmanifest)
@property
def user(self):
return encoding.tolocal(self._rawuser)
@property
def description(self):
return encoding.tolocal(self._rawdesc)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment