summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-10-30 18:37:07 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-10-30 18:37:07 (GMT)
commit78be2f4e01046e17a5c1a32fe6823a776b044ef7 (patch)
tree1c2f33898833001189ff1074cdc3eb5cee0b7691 /Misc/NEWS
parent0f5d6c00b48fb5e10e19909f5a8ca48bd2b9b0f5 (diff)
downloadcpython-78be2f4e01046e17a5c1a32fe6823a776b044ef7.zip
cpython-78be2f4e01046e17a5c1a32fe6823a776b044ef7.tar.gz
cpython-78be2f4e01046e17a5c1a32fe6823a776b044ef7.tar.bz2
Issue #8876: distutils now falls back to copying files when hard linking doesn't work.
This allows use with special filesystems such as VirtualBox shared folders.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1455d2c..86adaeb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,10 @@ Core and Builtins
Library
-------
+- Issue #8876: distutils now falls back to copying files when hard linking
+ doesn't work. This allows use with special filesystems such as VirtualBox
+ shared folders.
+
- Issue #9351: Defaults set with set_defaults on an argparse subparser
are no longer ignored when also set on the parent parser.