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 Dee Mee
Recipients Dee Mee, dstufft, eric.araujo
Date 2017-11-06.10:34:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1509964475.73.0.213398074469.issue31955@psf.upfronthosting.co.za>
In-reply-to
Content
Function set_executable() in ccompiler.py does the following check:

    def set_executable(self, key, value):
        if isinstance(value, str):
            setattr(self, key, split_quoted(value))
        else:
            setattr(self, key, value)


The check "if isinstance(value, str)" is incorrect, because type of value can be unicode, while it should be splitted as well.
History
Date User Action Args
2017-11-06 10:34:35Dee Meesetrecipients: + Dee Mee, eric.araujo, dstufft
2017-11-06 10:34:35Dee Meesetmessageid: <1509964475.73.0.213398074469.issue31955@psf.upfronthosting.co.za>
2017-11-06 10:34:35Dee Meelinkissue31955 messages
2017-11-06 10:34:35Dee Meecreate