summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-02-11 08:32:41 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-02-11 08:32:41 (GMT)
commit6a45021084f287cf389205939784d32f29efb20c (patch)
tree5ae62310475dd8f07c68f716bdd452b7fee6a8c8 /Misc
parent42ec031fe75601710b4edbfe7e617b97b4948de6 (diff)
parent3a308b9f374da7f11df888f104dae6464e81d73d (diff)
downloadcpython-6a45021084f287cf389205939784d32f29efb20c.zip
cpython-6a45021084f287cf389205939784d32f29efb20c.tar.gz
cpython-6a45021084f287cf389205939784d32f29efb20c.tar.bz2
Issue #19856: shutil.move() failed to move a directory to other directory
on Windows if source name ends with os.altsep.
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 0622360..5d95b9b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,9 @@ Core and Builtins
Library
-------
+- Issue #19856: shutil.move() failed to move a directory to other directory
+ on Windows if source name ends with os.altsep.
+
- Issue #20530: The signatures for slot builtins have been updated
to reflect the fact that they only accept positional-only arguments.