view tests/unwrap-message-id.py @ 52296:4361d787e6cf

rust-cpython: remove outdated test This test wasn't testing anything anymore since the feature has been removed. This was caught by clippy 1.82.0.
author Raphaël Gomès <rgomes@octobus.net>
date Tue, 29 Oct 2024 11:35:41 +0100
parents 6000f5b25c9b
children
line wrap: on
line source

import sys

for line in sys.stdin:
    if line.lower() in ("message-id: \n", "in-reply-to: \n"):
        line = line[:-2]
    print(line, end="")