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 martin.panter
Recipients gvanrossum, martin.panter, ncoghlan, oconnor663, serhiy.storchaka, yselivanov
Date 2015-12-03.00:46:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1449103598.19.0.0547976902362.issue25786@psf.upfronthosting.co.za>
In-reply-to
Content
If I understand this issue correctly, perhaps the test case should be augmented to check for a cycle:

try:
    main()
except RuntimeError as exc:
    self.assertIsNone(exc.__cause__)
else:
    self.fail("Expected RuntimeError")
History
Date User Action Args
2015-12-03 00:46:38martin.pantersetrecipients: + martin.panter, gvanrossum, ncoghlan, serhiy.storchaka, yselivanov, oconnor663
2015-12-03 00:46:38martin.pantersetmessageid: <1449103598.19.0.0547976902362.issue25786@psf.upfronthosting.co.za>
2015-12-03 00:46:38martin.panterlinkissue25786 messages
2015-12-03 00:46:38martin.pantercreate