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 Dennis Sweeney
Recipients BTaskaya, Dennis Sweeney, aeros, asvetlov, carltongibson, chris.jerdonek, eamanu, felixxm, miss-islington, serhiy.storchaka, yselivanov
Date 2020-05-30.19:38:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1590867525.02.0.978928236469.issue40696@roundup.psfhosted.org>
In-reply-to
Content
> I it related to issue25782?

Yes -- I didn't see that issue. I'm a little confused about the resolution of that issue though.

For clarification, the existing behavior on master:
    When trying to raise the exception H,
        F -> G -> H -> I -> NULL
    becomes
        H -> F -> G -> NULL

    But when trying to set the exception A on top of
        B -> C -> D -> E -> C -> ...,
        it gets stuck in an infinite loop from the existing cycle.

My PR keeps the first behavior and resolves the infinite loop by making it
    A -> B -> C -> D -> E -> NULL,
    which seems consistent with the existing behavior.

So it should be strictly a bugfix.
History
Date User Action Args
2020-05-30 19:38:45Dennis Sweeneysetrecipients: + Dennis Sweeney, asvetlov, chris.jerdonek, serhiy.storchaka, yselivanov, eamanu, miss-islington, BTaskaya, aeros, carltongibson, felixxm
2020-05-30 19:38:45Dennis Sweeneysetmessageid: <1590867525.02.0.978928236469.issue40696@roundup.psfhosted.org>
2020-05-30 19:38:45Dennis Sweeneylinkissue40696 messages
2020-05-30 19:38:44Dennis Sweeneycreate