changeset 42301 | 2a7109cc5a28 |
parent 42300 | 278dcb24e535 |
child 42406 | f385ba70e4af |
--- a/mercurial/changelog.py Tue Apr 23 13:29:13 2019 -0700 +++ b/mercurial/changelog.py Tue May 14 22:56:58 2019 -0700 @@ -194,6 +194,8 @@ user = attr.ib(default='') date = attr.ib(default=(0, 0)) files = attr.ib(default=attr.Factory(list)) + p1copies = attr.ib(default=None) + p2copies = attr.ib(default=None) description = attr.ib(default='') class changelogrevision(object):