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 rhettinger, serhiy.storchaka
Date 2015-01-17.21:44:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1421531041.58.0.0371728597931.issue23259@psf.upfronthosting.co.za>
In-reply-to
Content
This can be a common case in following algorithm (mesh optimization):

while elems:
    elem = elems.pop()
    changed = optimize(elem)
    if changed:
        elems.update(neighbors(elem))
History
Date User Action Args
2015-01-17 21:44:01serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger
2015-01-17 21:44:01serhiy.storchakasetmessageid: <1421531041.58.0.0371728597931.issue23259@psf.upfronthosting.co.za>
2015-01-17 21:44:01serhiy.storchakalinkissue23259 messages
2015-01-17 21:44:01serhiy.storchakacreate