diff -r 278dcb24e535 -r 2a7109cc5a28 mercurial/changelog.py --- 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):