[issue19716] test that touch doesn't change file contents

2013-11-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thank you! I've committed after a tiny simplification. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue19716] test that touch doesn't change file contents

2013-11-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 11a200202d7a by Antoine Pitrou in branch 'default': Issue #19716: add a test that Path.touch() doesn't change a file's contents. http://hg.python.org/cpython/rev/11a200202d7a -- nosy: +python-dev ___ Pyth

[issue19716] test that touch doesn't change file contents

2013-11-22 Thread Kushal Das
Kushal Das added the comment: Patch to check no change in file content after pathlib.touch(). -- keywords: +patch Added file: http://bugs.python.org/file32792/issue19716_v1.patch ___ Python tracker

[issue19716] test that touch doesn't change file contents

2013-11-22 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue19716] test that touch doesn't change file contents

2013-11-22 Thread Kushal Das
Kushal Das added the comment: i will submit a patch tomorrow. -- nosy: +kushaldas ___ Python tracker ___ ___ Python-bugs-list mailing

[issue19716] test that touch doesn't change file contents

2013-11-22 Thread Antoine Pitrou
New submission from Antoine Pitrou: Path.touch() shouldn't change a file's contents, but this is currently not tested for by test_pathlib. -- components: Tests keywords: easy messages: 203818 nosy: pitrou priority: normal severity: normal status: open title: test that touch doesn't chan