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 serhiy.storchaka
Recipients methane, rhettinger, serhiy.storchaka
Date 2017-02-08.09:14:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1486545240.91.0.864902274649.issue29476@psf.upfronthosting.co.za>
In-reply-to
Content
Sets often are used in following pattern:

    def recurse(obj):
        if subobj not in proceeding:
            proceeding.add(obj)
            for subobj in links(obj):
                recurse(subobj)
            proceeding.discard(obj)

In this case items are added and removed in LIFO order. How this change affects this case?
History
Date User Action Args
2017-02-08 09:14:00serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, methane
2017-02-08 09:14:00serhiy.storchakasetmessageid: <1486545240.91.0.864902274649.issue29476@psf.upfronthosting.co.za>
2017-02-08 09:14:00serhiy.storchakalinkissue29476 messages
2017-02-08 09:14:00serhiy.storchakacreate