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 brett.cannon
Recipients brett.cannon, collinwinter
Date 2008-07-02.20:02:12
SpamBayes Score 5.333016e-05
Marked as misclassified No
Message-id <1215028935.08.0.401449015598.issue3260@psf.upfronthosting.co.za>
In-reply-to
Content
``from test import test_support`` should lead to ``from test import
support as test_support``. Also does not work for ``from
test.test_support import Error``.

There is also no good way to handle ``import test.test_support`` since
``import test.test_support as test.support`` is an error. Perhaps
``import test.support; test.test_support = support``?

At the moment test.support is the only rename like this, so it is not
critical that this be fixed immediately as probably few people use the
module outside of the stdlib.
History
Date User Action Args
2008-07-02 20:02:15brett.cannonsetspambayes_score: 5.33302e-05 -> 5.333016e-05
recipients: + brett.cannon, collinwinter
2008-07-02 20:02:15brett.cannonsetspambayes_score: 5.33302e-05 -> 5.33302e-05
messageid: <1215028935.08.0.401449015598.issue3260@psf.upfronthosting.co.za>
2008-07-02 20:02:14brett.cannonlinkissue3260 messages
2008-07-02 20:02:12brett.cannoncreate