[issue31955] distutils C compiler: set_executables() incorrectly parse values with spaces

2017-11-08 Thread STINNER Victor
STINNER Victor added the comment: Thank you Dee Mee for your bug report and your bug fix! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue31955] distutils C compiler: set_executables() incorrectly parse values with spaces

2017-11-08 Thread STINNER Victor
STINNER Victor added the comment: New changeset 849482955f70eb1adc47a20dcbce3b4add47d864 by Victor Stinner (Mazay0) in branch '2.7': bpo-31955: Fix distutils CCompiler.set_executable() for Unicode (GH-4316)

[issue31955] distutils C compiler: set_executables() incorrectly parse values with spaces

2017-11-07 Thread Dee Mee
Dee Mee added the comment: I agree, that this fix is necessary only for Python 2. Submitted new PR 4316 -- versions: -Python 3.6, Python 3.7 ___ Python tracker

[issue31955] distutils C compiler: set_executables() incorrectly parse values with spaces

2017-11-07 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +4275 ___ Python tracker ___

[issue31955] distutils C compiler: set_executables() incorrectly parse values with spaces

2017-11-06 Thread STINNER Victor
STINNER Victor added the comment: > The check "if isinstance(value, str)" is incorrect, because type of value can > be unicode, while it should be splitted as well. Your pull request is for Python 3, but the type of paths is expected to be str on Python 3, no? For

[issue31955] distutils C compiler: set_executables() incorrectly parse values with spaces

2017-11-06 Thread STINNER Victor
Change by STINNER Victor : -- title: set_executables() incorrectly parse values with spaces -> distutils C compiler: set_executables() incorrectly parse values with spaces ___ Python tracker