mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
9 lines
160 B
Python
9 lines
160 B
Python
import io
|
|
|
|
with io.open("f.txt", mode="r", buffering=-1, **kwargs) as f:
|
|
print(f.read())
|
|
|
|
from io import open
|
|
|
|
with open("f.txt") as f:
|
|
print(f.read())
|