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 vstinner
Recipients serhiy.storchaka, vstinner
Date 2017-05-03.16:05:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1493827548.53.0.400926690778.issue30258@psf.upfronthosting.co.za>
In-reply-to
Content
Ooops, there is a bug in my pushed changed, spotted by Serhiy:

>                      # Strip last refcount output line if it exists, since it
                     # comes from the shutdown of the interpreter in the subcommand.
                     stderr = debug_output_pat.sub("", stderr)
+
+                    if retcode != 0:
+                        result = (CHILD_ERROR, "Exit code %s" % retcode)
+                        output.put((test, stdout.rstrip(), stderr.rstrip(),
+                                    result))
+

Missed return?
History
Date User Action Args
2017-05-03 16:05:48vstinnersetrecipients: + vstinner, serhiy.storchaka
2017-05-03 16:05:48vstinnersetmessageid: <1493827548.53.0.400926690778.issue30258@psf.upfronthosting.co.za>
2017-05-03 16:05:48vstinnerlinkissue30258 messages
2017-05-03 16:05:48vstinnercreate