[issue1731] Random errors on interpreter shutdown

2008-01-15 Thread Jesús Cea Avión
Changes by Jesús Cea Avión: -- nosy: +jcea __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue1731] Random errors on interpreter shutdown

2008-01-09 Thread Guido van Rossum
Changes by Guido van Rossum: -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list

[issue1731] Random errors on interpreter shutdown

2008-01-09 Thread A.M. Kuchling
A.M. Kuchling added the comment: The fix has been applied (by GvR) to 2.5 in r59724. This issue can probably be closed now. -- nosy: +akuchling __ Tracker <[EMAIL PROTECTED]> __ _

[issue1731] Random errors on interpreter shutdown

2008-01-03 Thread Thomas Dybdahl Ahle
Thomas Dybdahl Ahle added the comment: I run this now in the beginning of my code. As far as I can see it works fine. if not hasattr(Thread, "_Thread__bootstrap_inner"): class SafeThread (Thread): def encaps(self): try: self._Thread__bootstrap_inner()

[issue1731] Random errors on interpreter shutdown

2008-01-03 Thread Thomas Dybdahl Ahle
Thomas Dybdahl Ahle added the comment: The fix looks nice. I'll just implement it locally in my app for python < 2.4. Thanks __ Tracker <[EMAIL PROTECTED]> __ _

[issue1731] Random errors on interpreter shutdown

2008-01-03 Thread Guido van Rossum
Guido van Rossum added the comment: This has been fixed in 2.6, see revision 57216. We won't be fixing this in 2.4, although a vendor might consider this. Should we be fixing this in 2.5? -- nosy: +gvanrossum __ Tracker <[EMAIL PROTECTED]>

[issue1731] Random errors on interpreter shutdown

2008-01-03 Thread Thomas Dybdahl Ahle
New submission from Thomas Dybdahl Ahle: I have a pygtk program, that uses a fairly lot of threads in a pool. All of these threads are setDaemon to ensure the application shuts down when I call gtk.main_quit() About every second time I close the app, I get one or more errors from places in the p