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 davin
Recipients Daniel.Blanchard, Doug Coleman, amaury.forgeotdarc, bronger, davin, jnoller, mdengler, nikratio, python-dev, sbt, viraptor, ysj.ray
Date 2016-09-06.21:54:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473198875.35.0.530942187904.issue9400@psf.upfronthosting.co.za>
In-reply-to
Content
Reading through issue1692335 provides a sense of the concerns surrounding the patches they applied to the 3.x branches.  Attempting to backport those patches to the 2.7 branch involves non-trivial risk, magnified by the now numerous differences between those branches.

If we had a reasonable workaround to use in 2.7, that would simplify things.

Example workaround that produces behavior in 2.7.12 very like what's observed when using 3.5 or 3.6:
        try:
            subprocess.check_call(['dcon'], stdout=fh, stderr=fh)
        except subprocess.CalledProcessError as cpe:
            raise Exception(str(cpe))
History
Date User Action Args
2016-09-06 21:54:35davinsetrecipients: + davin, amaury.forgeotdarc, bronger, jnoller, nikratio, ysj.ray, python-dev, sbt, Daniel.Blanchard, mdengler, viraptor, Doug Coleman
2016-09-06 21:54:35davinsetmessageid: <1473198875.35.0.530942187904.issue9400@psf.upfronthosting.co.za>
2016-09-06 21:54:35davinlinkissue9400 messages
2016-09-06 21:54:35davincreate