Hmmm...
PEP 8 says: "Relative imports for intra-package imports are highly discouraged. Always use the absolute package path for all imports. Even now that PEP 328 is fully implemented in Python 2.5, its style of explicit relative imports is actively discouraged; absolute imports are more portable and usually more readable."
Does this mean that by using relative imports we are in ignoring PEP 8? What's the justification?
@dabeaz says: