Should `_` get a special treatment? ## Repro ``` import os for _ in range(3): # throw-away _ root, _ = os.path.split("C:\\123") # throw-away _ ``` ## Expected No errors ## Actual ``` foo.py:4: error: Incompatible types in assignment (expression has type "str", variable has type "int") ```