mirror of https://github.com/astral-sh/ruff
31 lines
417 B
Python
31 lines
417 B
Python
import os.path
|
|
import ospath
|
|
from os import path
|
|
import some as sum
|
|
from some import other as int
|
|
|
|
print = 1
|
|
copyright: 'annotation' = 2
|
|
(complex := 3)
|
|
float = object = 4
|
|
min, max = 5, 6
|
|
|
|
def bytes():
|
|
pass
|
|
|
|
class slice:
|
|
pass
|
|
|
|
try:
|
|
...
|
|
except ImportError as ValueError:
|
|
...
|
|
|
|
for memoryview, *bytearray in []:
|
|
pass
|
|
|
|
with open('file') as str, open('file2') as (all, any):
|
|
pass
|
|
|
|
[0 for sum in ()]
|