summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJohannes Gijsbers <jlg@dds.nl>2004-08-14 14:03:03 (GMT)
committerJohannes Gijsbers <jlg@dds.nl>2004-08-14 14:03:03 (GMT)
commit9d134b7386933da18abd0c24c5c783d80fd66011 (patch)
treeef932cdde5e70e890e3838459f945c5387eff4bb /Misc
parent68128715f2b7d4c73f55d576d500b6cd3d41b378 (diff)
downloadcpython-9d134b7386933da18abd0c24c5c783d80fd66011.zip
cpython-9d134b7386933da18abd0c24c5c783d80fd66011.tar.gz
cpython-9d134b7386933da18abd0c24c5c783d80fd66011.tar.bz2
bug #851123: shutil.copyfile will raise an exception when trying to copy a file
onto a link to itself. Thanks Gregory Ball.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 019d0e8..cebee3e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,6 +41,9 @@ Extension modules
Library
-------
+- bug #851123: shutil.copyfile will raise an exception when trying to copy a
+ file onto a link to itself. Thanks Gregory Ball.
+
- bug #570300: Fix inspect to resolve file locations using os.path.realpath()
so as to properly list all functions in a module when the module itself is
reached through a symlink. Thanks Johannes Gijsbers.