# HG changeset patch # User Pierre-Yves David # Date 2023-02-02 16:21:45 # Node ID 87b004378fc49be1e1681accf1edc48fff4f87ff # Parent a5bba73a1352ef8ddbd80ee9f75ff24e5a4242b8 safehasattr: pass attribute name as string instead of bytes This is a step toward replacing `util.safehasattr` usage with plain `hasattr`. The builtin function behave poorly in Python2 but this was fixed in Python3. These change are done one by one as they tend to have a small odd to trigger puzzling breackage. diff --git a/mercurial/crecord.py b/mercurial/crecord.py --- a/mercurial/crecord.py +++ b/mercurial/crecord.py @@ -1944,7 +1944,7 @@ are you sure you want to review/edit and """ origsigwinch = sentinel = object() - if util.safehasattr(signal, b'SIGWINCH'): + if util.safehasattr(signal, 'SIGWINCH'): origsigwinch = signal.signal(signal.SIGWINCH, self.sigwinchhandler) try: return self._main(stdscr)