Mercurial > public > mercurial-scm > hg-stable
diff mercurial/mdiff.py @ 49973:a78dfb1ad60e
mdiff: add a __str__ method to diffopts
This makes it easier to debug by just formatting the object into `%s` to see the
members and state, instead of the class and memory address.
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Mon, 09 Jan 2023 14:34:19 -0500 |
parents | d44e3c45f0e4 |
children | 362d5a2ffd17 |
line wrap: on
line diff
--- a/mercurial/mdiff.py Fri Jan 06 11:38:13 2023 -0500 +++ b/mercurial/mdiff.py Mon Jan 09 14:34:19 2023 -0500 @@ -94,6 +94,13 @@ opts.update(kwargs) return diffopts(**opts) + def __bytes__(self): + return b", ".join( + b"%s: %r" % (k, getattr(self, k)) for k in self.defaults + ) + + __str__ = encoding.strmethod(__bytes__) + defaultopts = diffopts()