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.

Author giampaolo.rodola
Recipients giampaolo.rodola, rosslagerwall
Date 2019-05-30.07:18:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1559200699.13.0.758657145229.issue37096@roundup.psfhosted.org>
In-reply-to
Content
The need for this emerged in:
https://bugs.python.org/issue36610#msg343948.
We currently use sendfile(2) syscall in high-level shutil.copyfile() on Linux and socket.sendfile() on UNIX. In addition this PR also tests shutil.copyfile() implementation on OSX which takes advantage of fcopyfile(2) syscall. The goal is to make sure "fast-copy" syscalls can handle files > 2G. On my Ubuntu 18.04 with SSD disk this introduces a 5 secs slowdown to the test run.

According to:
https://github.com/golang/go/issues/13892
...problems may arise on SunOS, so if a BB will turn red this is expected.
History
Date User Action Args
2019-05-30 07:18:19giampaolo.rodolasetrecipients: + giampaolo.rodola, rosslagerwall
2019-05-30 07:18:19giampaolo.rodolasetmessageid: <1559200699.13.0.758657145229.issue37096@roundup.psfhosted.org>
2019-05-30 07:18:19giampaolo.rodolalinkissue37096 messages
2019-05-30 07:18:18giampaolo.rodolacreate