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: Wrong bpo linked in What's New in 3.8
Type: Stage: resolved
Components: Documentation Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Mariatta, docs@python, giampaolo.rodola, josh.r, miss-islington
Priority: low Keywords: easy, patch

Created on 2018-12-07 04:46 by josh.r, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 11012 merged Mariatta, 2018-12-07 05:54
Messages (4)
msg331264 - (view) Author: Josh Rosenberg (josh.r) * (Python triager) Date: 2018-12-07 04:46
https://docs.python.org/3.8/whatsnew/3.8.html#optimizations begins with:

shutil.copyfile(), shutil.copy(), shutil.copy2(), shutil.copytree() and shutil.move() use platform-specific “fast-copy” syscalls on Linux, macOS and Solaris in order to copy the file more efficiently. ... more explanation ... (Contributed by Giampaolo Rodola’ in bpo-25427.)

That's all correct, except bpo-25427 is about removing the pyvenv script; it should be referencing bpo-33671.
msg331268 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2018-12-07 05:55
Thanks! This has been fixed.
msg331269 - (view) Author: miss-islington (miss-islington) Date: 2018-12-07 05:59
New changeset 16501b70826695991b3a151dfc538f010be5c765 by Miss Islington (bot) (Mariatta) in branch 'master':
bpo-35434 Fix wrong issue number in what's new in 3.8 (GH-11012)
https://github.com/python/cpython/commit/16501b70826695991b3a151dfc538f010be5c765
msg331305 - (view) Author: Giampaolo Rodola' (giampaolo.rodola) * (Python committer) Date: 2018-12-07 12:49
My bad. Thanks for fixing it.
History
Date User Action Args
2022-04-11 14:59:09adminsetgithub: 79615
2019-01-03 10:51:56FR4NKESTI3Nsetpull_requests: - pull_request10811
2019-01-03 10:51:37FR4NKESTI3Nsetpull_requests: - pull_request10810
2019-01-03 10:51:22FR4NKESTI3Nsetpull_requests: - pull_request10809
2019-01-02 19:31:26FR4NKESTI3Nsetpull_requests: + pull_request10811
2019-01-02 19:31:17FR4NKESTI3Nsetpull_requests: + pull_request10810
2019-01-02 19:31:08FR4NKESTI3Nsetpull_requests: + pull_request10809
2018-12-07 12:49:48giampaolo.rodolasetmessages: + msg331305
2018-12-07 05:59:45miss-islingtonsetnosy: + miss-islington
messages: + msg331269
2018-12-07 05:55:59Mariattasetstatus: open -> closed

nosy: + Mariatta
messages: + msg331268

resolution: fixed
stage: patch review -> resolved
2018-12-07 05:54:18Mariattasetkeywords: + patch
stage: patch review
pull_requests: + pull_request10246
2018-12-07 04:46:28josh.rcreate