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 rene.st
Recipients rene.st
Date 2008-01-17.11:29:56
SpamBayes Score 0.040631987
Marked as misclassified No
Message-id <1200569458.8.0.233156398307.issue1857@psf.upfronthosting.co.za>
In-reply-to
Content
The commit to r45234 has added an internally used keyword attribute
named _deadstate to subprocess.Popen.poll, which is called by the
__del__ method of this class.  If you derived your own class from
subprocess.Popen that overrides .poll() without taking kwargs, the
__del__ method will trigger a TypeError about the unexpected keyword
argument.

Attached is a very simple test program that triggers the problem.  It
runs just fine with Python 2.4 however.
History
Date User Action Args
2008-01-17 11:30:59rene.stsetspambayes_score: 0.040632 -> 0.040631987
recipients: + rene.st
2008-01-17 11:30:58rene.stsetspambayes_score: 0.040632 -> 0.040632
messageid: <1200569458.8.0.233156398307.issue1857@psf.upfronthosting.co.za>
2008-01-17 11:29:58rene.stlinkissue1857 messages
2008-01-17 11:29:57rene.stcreate