/
githubmirror
/
cpython
Обзор
Документация
Войти
/
githubmirror
/
cpython
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Tools/.ruff.toml
14 строк
483 B
Hugo van Kemenade
gh-151428: Remove unused imports from stdlib (#151478)
16 июн 2026, 19:31
Не верифицирован
16 июн 2026, 19:31
627adb5
Код
Авторство
О чём код?
extend = "../.ruff.toml" # Inherit the project-wide settings [per-file-target-version] "jit/*.py" = "py312" # Reused-quote f-strings (PEP 701) [lint] select = [ "F401", # Unused import ] [lint.per-file-ignores] "c-analyzer/c_parser/__init__.py" = ["F401"] # Re-exports from submodules "c-analyzer/c_parser/preprocessor/__init__.py" = ["F401"] # Re-exports from submodules "c-analyzer/c_parser/preprocessor/common.py" = ["F401"] # Re-exported by preprocessor/__init__.py