[issue4876] Incorrect detection of module as local

2009-01-08 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r68422. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Pytho

[issue4876] Incorrect detection of module as local

2009-01-07 Thread Martin v. Löwis
Martin v. Löwis added the comment: That should work, yes. ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue4876] Incorrect detection of module as local

2009-01-07 Thread Benjamin Peterson
Benjamin Peterson added the comment: Should we just run the import fixer (fixes stdlib module names) after the import fixer (fixes sibling imports)? -- assignee: -> benjamin.peterson nosy: +benjamin.peterson ___ Python tracker

[issue4876] Incorrect detection of module as local

2009-01-07 Thread Martin v. Löwis
New submission from Martin v. Löwis : There is an unfortunate interaction of two fixers to be observed in django. django.util.text.py contains from htmlentitydefs import name2codepoint This gets fixed to from .html.entities import name2codepoint because there is also a local module django.uti