[issue13336] packaging.command.Command.copy_file doesn't implement preserve_mode and preserve_times

2014-03-12 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: -> out of date stage: -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue13336] packaging.command.Command.copy_file doesn't implement preserve_mode and preserve_times

2011-11-12 Thread Vinay Sajip
Vinay Sajip added the comment: > > > Éric Araujo added the comment: > > Thanks for the report.  Have you found the bug with a real setup.cfg or hook, > or > were you just reading the code? > I found the bug with a real setup.cfg (executable permission not set IIRC) and tracked it to co

[issue13336] packaging.command.Command.copy_file doesn't implement preserve_mode and preserve_times

2011-11-12 Thread Éric Araujo
Éric Araujo added the comment: Thanks for the report. Have you found the bug with a real setup.cfg or hook, or were you just reading the code? I’m not sure how hard to fix this will be. The copy_file method delegates to shutil.copyfile, but this does not have the arguments we need, contrary

[issue13336] packaging.command.Command.copy_file doesn't implement preserve_mode and preserve_times

2011-11-03 Thread Vinay Sajip
New submission from Vinay Sajip : The packaging.command.Command.copy_file method does not honour the preserve_mode and preserve_times keyword arguments. Likewise, packaging.command.Command.copy_tree does not honour the preserve_mode, preserve_times and preserve_symlinks keyword arguments. ---