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 marystern
Recipients marystern
Date 2009-01-29.16:00:05
SpamBayes Score 0.0006179595
Marked as misclassified No
Message-id <1233244808.27.0.922840300181.issue5099@psf.upfronthosting.co.za>
In-reply-to
Content
I was getting this error (while running my unit tests):

Exception exceptions.AttributeError: "'NoneType' object has no attribute
'error'" in <bound method Popen.__del__ of <subprocess.Popen object at
0x8a2596c>> ignored

which I tracked down to the os module being set to None (yes really!) in
POpen._internal_poll() when called from Popen.__del__, so this line:

                    except os.error:

was generating the error.

I guess that the module is getting unloaded earlier somehow (maybe a
race condition)?
History
Date User Action Args
2009-01-29 16:00:08marysternsetrecipients: + marystern
2009-01-29 16:00:08marysternsetmessageid: <1233244808.27.0.922840300181.issue5099@psf.upfronthosting.co.za>
2009-01-29 16:00:06marysternlinkissue5099 messages
2009-01-29 16:00:05marysterncreate