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 terry.reedy
Recipients Arfrever, chortos, gvanrossum, petri.lehtinen, pitrou, python-dev, r.david.murray, serhiy.storchaka, terry.reedy, vstinner
Date 2013-09-21.23:11:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1379805075.51.0.800398063517.issue12085@psf.upfronthosting.co.za>
In-reply-to
Content
Reading Antoine's message more carefully, and the cited doc line, the generic fix to prevent the warning would be

try:
 <__del__ body>
except Exception:
  pass

The question is, do we only want to block the warning when someone calls Popen with the wrong number of arguments, or always?
History
Date User Action Args
2013-09-21 23:11:15terry.reedysetrecipients: + terry.reedy, gvanrossum, pitrou, vstinner, Arfrever, r.david.murray, chortos, python-dev, petri.lehtinen, serhiy.storchaka
2013-09-21 23:11:15terry.reedysetmessageid: <1379805075.51.0.800398063517.issue12085@psf.upfronthosting.co.za>
2013-09-21 23:11:15terry.reedylinkissue12085 messages
2013-09-21 23:11:15terry.reedycreate