[issue11928] fail on filename with space at the end

2021-02-03 Thread Steve Dower
Steve Dower added the comment: Distutils is now deprecated (see PEP 632) and all tagged issues are being closed. From now until removal, only release blocking issues will be considered for distutils. If this issue does not relate to distutils, please remove the component and reopen it. If y

[issue11928] fail on filename with space at the end

2013-10-13 Thread Ezio Melotti
Changes by Ezio Melotti : -- type: -> behavior versions: +Python 3.4 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue11928] fail on filename with space at the end

2011-04-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: Windows Explorer does not so allow, but yes, Windows does. With xp >>> os.stat('some file ') nt.stat_result(st_mode=33206, st_ino=6473924464520118, st_dev=0, st_nlink=1, st_uid=0, st_gid=0, st_size=13, st_atime=1304114221, st_mtime=1304114055, st_ctime=1304113

[issue11928] fail on filename with space at the end

2011-04-27 Thread Éric Araujo
Éric Araujo added the comment: > WindowsError: [Error 2] The system cannot find the file specified: 'some file > ' The strange thing is that the filename is correct (I feared it was a strip() call somewhere that caused the bug), and that you get a WindowsError. This makes me think that the

[issue11928] fail on filename with space at the end

2011-04-27 Thread anatoly techtonik
anatoly techtonik added the comment: >python setup.py sdist {{{ Distribution.parse_config_files(): options (after parsing config files): no commands known yet options (after parsing command line): option dict for 'sdist' command: {} running sdist Distribution.get_command_obj(): creating 'sdist

[issue11928] fail on filename with space at the end

2011-04-27 Thread Éric Araujo
Éric Araujo added the comment: Wow. Can you set DISTUTILS_DEBUG=1 in your environment and then copy the full traceback here? Try to see if other commands like build or check cause the error too. -- ___ Python tracker

[issue11928] fail on filename with space at the end

2011-04-27 Thread anatoly techtonik
anatoly techtonik added the comment: The mere presence of this file in directory with setup.py files this error. It is not added in any files. -- ___ Python tracker ___ ___

[issue11928] fail on filename with space at the end

2011-04-27 Thread Éric Araujo
Éric Araujo added the comment: Do you get the bug if you put such a filename in the MANIFEST file, or MANIFEST.in, or data_files argument, or something else, or all of them? If it’s a MANIFEST bug, can you test with quotes around the filename? -- assignee: tarek -> eric.araujo compon

[issue11928] fail on filename with space at the end

2011-04-26 Thread anatoly techtonik
Changes by anatoly techtonik : -- title: fail if file with space at the end is present -> fail on filename with space at the end ___ Python tracker ___ _