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.

classification
Title: Python suddenly cares about EOLs formats on windows
Type: behavior Stage:
Components: Windows Versions: Python 3.4
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: BreamoreBoy, benjamin.peterson, eric.smith, georg.brandl, pygnol
Priority: normal Keywords:

Created on 2014-05-04 16:20 by pygnol, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (4)
msg217879 - (view) Author: Chappuis (pygnol) Date: 2014-05-04 16:20
When trying to execute the Software build program waf (http://ftp.waf.io/pub/release/waf-1.7.16) with the command python waf-1.7.16 --version, this unzip a folder in the current directory while reporting the version of the program on the standard input. Waf is distributed as a single file with unix end-of-lines. Executing the program with python 2.7 to 3.3 does not cause any problem, but executing with python-3.4.0 make the execution stop.

I patched waf to solve the problem which is purely related to unix/dos end-of-lines. The behaviour of python-3.4.0 seems to have change regarding these EOL characters compared to the previous releases. Is that intentional?

Kind regards

Thierry
msg218050 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2014-05-07 13:49
Can you describe what command you ran and what you saw at the "executing with python-3.4.0 make the execution stop" step?
msg228479 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2014-10-04 19:07
Can we please have a response to the question put in msg218050 so we can investigate?
msg228484 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2014-10-04 19:27
No response, closing.
History
Date User Action Args
2022-04-11 14:58:03adminsetgithub: 65627
2014-10-04 19:27:34georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg228484

resolution: out of date
2014-10-04 19:07:19BreamoreBoysetnosy: + BreamoreBoy
messages: + msg228479
2014-05-07 13:49:42eric.smithsetnosy: + eric.smith
messages: + msg218050
2014-05-04 21:59:45pitrousetnosy: + benjamin.peterson
2014-05-04 16:20:00pygnolcreate