When decompiling .pyc files that contain if-elif-else statements with chained comparisons, a segmentation fault occurs. Python 3.9.21 Python source code: ```python def test(msgtype, num): if num <= 1: msgtype = 1 elif 2 < num <= 3: msgtype = 3 else: msgtype = 4 return msgtype ```