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 collinwinter
Recipients collinwinter, dangyogi, loewis, wolever
Date 2008-03-28.20:41:52
SpamBayes Score 0.08892714
Marked as misclassified No
Message-id <1206736914.2.0.644708268708.issue2446@psf.upfronthosting.co.za>
In-reply-to
Content
Looking at it, I was confused by a quirk introduced into test_fixers:
Test_import's check_both() helper method does the wrong thing in this case:

a = "import os"
self.check_both(a, a)  # Fails, tries to translate "import os" into
"from . import os"

self.unchanged(a) passes, though. What's going on with these methods?
History
Date User Action Args
2008-03-28 20:41:54collinwintersetspambayes_score: 0.0889271 -> 0.08892714
recipients: + collinwinter, loewis, dangyogi, wolever
2008-03-28 20:41:54collinwintersetspambayes_score: 0.0889271 -> 0.0889271
messageid: <1206736914.2.0.644708268708.issue2446@psf.upfronthosting.co.za>
2008-03-28 20:41:53collinwinterlinkissue2446 messages
2008-03-28 20:41:53collinwintercreate