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-23.20:05:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1379966726.42.0.724213755761.issue12085@psf.upfronthosting.co.za>
In-reply-to
Content
def _handle_exitstatus(self, sts, _WIFSIGNALED=os.WIFSIGNALED,
                 _WTERMSIG=os.WTERMSIG, _WIFEXITED=os.WIFEXITED,
-                _WEXITSTATUS=os.WEXITSTATUS):
+                _WEXITSTATUS=os.WEXITSTATUS, _SubprocessError=SubprocessError):
             # This method is called (indirectly) by __del__, so it cannot
             # refer to anything outside of its local scope."""

The non-effective """ should be removed. Otherwise LFTM.
Good catch on the non-local dependencies that violated the comment.
History
Date User Action Args
2013-09-23 20:05:26terry.reedysetrecipients: + terry.reedy, gvanrossum, pitrou, vstinner, Arfrever, r.david.murray, chortos, python-dev, petri.lehtinen, serhiy.storchaka
2013-09-23 20:05:26terry.reedysetmessageid: <1379966726.42.0.724213755761.issue12085@psf.upfronthosting.co.za>
2013-09-23 20:05:26terry.reedylinkissue12085 messages
2013-09-23 20:05:26terry.reedycreate