This repository was archived by the owner on Mar 7, 2021. It is now read-only.

Description
Here is a small contrived example:
import os.path
import os.sys
os.path.join('foo', 'bar')
os.sys.platform
Running pyflakes on this file results in:
test.py:2: redefinition of unused 'os' from line 1
but I would expect no errors since both imports are used.
This example could obviously be rewritten to prevent the false
positive, but in some code bases, usage of fully qualified module
references can be common.