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 pje
Recipients Pascal.Chambon, barry, brett.cannon, eric.snow, isoschiz, kristjan.jonsson, methane, ncoghlan, pconnell, pje
Date 2013-05-04.22:49:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CALeMXf44ib8HcLbAaFaFqMQTy6uC_6roBm1P__E=G71w543Srw@mail.gmail.com>
In-reply-to <1367605445.89.0.775517272704.issue17636@psf.upfronthosting.co.za>
Content
It looks like maybe basic2 should be importing basic, not basic2.
Otherwise, you might as well just import basic2 directly and be done
with it.  ;-)  Likewise, I think indirect should be importing from
indirect2, not from itself?  i.e., I'd expect that test to fail even
with the change.  In addition, even if that is fixed, it's still not
testing a cycle involving util; it's really just testing the same
thing as "basic" is supposed to be testing.

It also looks as though like the rebinding test doesn't actually test
any rebinding, since nobody ever imports the thing that's rebound.
It's failing for the same reason as the subpackage test.  The
subpackage test looks like a valid test, though - i.e., it's the
"basic" case correctly implemented as a parent-child cycle.  It's
actually the only one of the tests that tests what it says it does.
History
Date User Action Args
2013-05-04 22:49:26pjesetrecipients: + pje, barry, brett.cannon, ncoghlan, kristjan.jonsson, methane, eric.snow, pconnell, isoschiz, Pascal.Chambon
2013-05-04 22:49:25pjelinkissue17636 messages
2013-05-04 22:49:25pjecreate