ruff/crates/ruff_linter/resources/test/fixtures/flake8_print/T201.py
2023-09-20 08:38:27 +02:00

10 lines
282 B
Python

import sys
import tempfile
print("Hello, world!") # T201
print("Hello, world!", file=None) # T201
print("Hello, world!", file=sys.stdout) # T201
print("Hello, world!", file=sys.stderr) # T201
with tempfile.NamedTemporaryFile() as fp:
print("Hello, world!", file=fp) # OK