Closed alex closed 10 years ago
This is because nacl.c
is a different module to nacl
and the sort order is based on the absolute module names.
This example might make the intention a bit more obvious
import package
from package import some_more_stuff
import package.module
from package.module import other_bits
I suppose that makes a certain amount of sense, really this just reinforces my hatered of import package.module
style. Closing this issue.
The following code gives a flake8 error, and I don't think it should:
If it's correct that this is failing, it'd be great if it the error message was a bit more descriptive.