DEBSOURCES
Skip Quicknav
sources / python-lsp-rope / 0.1.17-1 / test / fixtures / redundant_import.py
1234567891011121314
import sys import os.path import sys def main(): a = sys.stdin.read() b = 20 print(a + b) c = a + b a, b = 30, 40 print(a + b)