Mercurial > public > mercurial-scm > hg-stable
diff mercurial/statprof.py @ 51672:99632adff795 stable
py3: fix type of some elements of __all__ lists
author | Manuel Jacob <me@manueljacob.de> |
---|---|
date | Mon, 05 Aug 2024 20:47:17 +0200 |
parents | 933551630b0d |
children | 454feddab720 |
line wrap: on
line diff
--- a/mercurial/statprof.py Thu Aug 01 11:14:58 2024 +0100 +++ b/mercurial/statprof.py Mon Aug 05 20:47:17 2024 +0200 @@ -122,7 +122,7 @@ defaultdict = collections.defaultdict contextmanager = contextlib.contextmanager -__all__ = [b'start', b'stop', b'reset', b'display', b'profile'] +__all__ = ['start', 'stop', 'reset', 'display', 'profile'] skips = { "util.py:check",