[Python-Dev] Re: [Python-checkins] python/dist/src/Lib/email/test test_email_codecs.py,1.1,1.2

Neal Norwitz neal@metaslash.com
Sun, 28 Jul 2002 10:03:13 -0400


Guido van Rossum wrote:
> 
> > A better fix, IMO, is to recognize that the `test' package has become
> > a full fledged standard lib package (a Good Thing, IMO), heed our own
> > admonitions not to do relative imports, and change the various places
> > in the test suite that "import test_support" (or equiv) to "import
> > test.test_support" (or equiv).
> 
> Good idea.

Shouldn't this also be done for from XXX import YYY?

    grep test_support `find Lib -name '*.py'` | \
	egrep -v '(from test |test\.test_support)' | grep import

Neal