ruff/resources/test/fixtures/U002.py
2022-10-06 22:49:06 -04:00

15 lines
146 B
Python

from os.path import abspath
x = abspath(__file__)
import os
y = os.path.abspath(__file__)
from os import path
z = path.abspath(__file__)