This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author loewis
Recipients loewis, wolever
Date 2008-03-19.02:22:31
SpamBayes Score 0.552174
Marked as misclassified No
Message-id <1205893352.87.0.586984604405.issue2414@psf.upfronthosting.co.za>
In-reply-to
Content
There should be a fixer that changes

from foo import bar

into

from .foo import bar

if the import occurs in a package and foo is in the very same package.

Likewise, it should change

import foo

to

from . import foo
History
Date User Action Args
2008-03-19 02:22:33loewissetspambayes_score: 0.552174 -> 0.552174
recipients: + loewis, wolever
2008-03-19 02:22:32loewissetspambayes_score: 0.552174 -> 0.552174
messageid: <1205893352.87.0.586984604405.issue2414@psf.upfronthosting.co.za>
2008-03-19 02:22:31loewislinkissue2414 messages
2008-03-19 02:22:31loewiscreate