mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 14:21:53 +00:00
10 lines
282 B
Python
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
|