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 pitrou
Recipients amaury.forgeotdarc, benjamin.peterson, pitrou, vstinner
Date 2008-08-21.17:14:30
SpamBayes Score 0.0003523559
Marked as misclassified No
Message-id <1219338872.52.0.177102829838.issue3611@psf.upfronthosting.co.za>
In-reply-to
Content
On a Windows box, I manage to make the following script reliably hang on
a non-debug build of beta3. This can be a good base for further diagnosing.


def f():
    class Bug:
        def __del__(self):
            1/0

    import gc
    trash = [Bug()]
    trash.append(trash)
    try:
        gc.collect()
        gc.set_threshold(1, 1, 1)
        del trash
        len()
    except TypeError:
        raise

if __name__ == "__main__":
    f()
History
Date User Action Args
2008-08-21 17:14:32pitrousetrecipients: + pitrou, amaury.forgeotdarc, vstinner, benjamin.peterson
2008-08-21 17:14:32pitrousetmessageid: <1219338872.52.0.177102829838.issue3611@psf.upfronthosting.co.za>
2008-08-21 17:14:31pitroulinkissue3611 messages
2008-08-21 17:14:30pitroucreate