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 aaronsw
Recipients
Date 2006-02-13.04:35:59
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The following code consistently crashes Python 2.4 on Mac OS X:

import threading

class foo:
    def __getattr__(self, x): self.foo

def j(): foo().bar

t = threading.Thread(target=j, args=())
t.start()
History
Date User Action Args
2007-08-23 14:37:48adminlinkissue1430436 messages
2007-08-23 14:37:48admincreate