Lennart Regebro added the comment:

Not really, but they are related. The fixer looks for a local module, and if it 
finds it it will assume the import is local. 

#13317 is caused by it not finding the module, since it's not built and hence 
assuming it's a global import.

This bug, contrariwise, is cause by the fixer finding a folder, and therefore 
assuming it is a local import when it's not.

The fix for this is to check that the folder has an __init__.py. The fix for 
#13317 is to build extensions before running 2to3.

Neither of them are huge problems since you can avoid both bugs but not using 
relative imports. :-)

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue17393>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to