diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-29 20:26:59 +0000 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-29 20:26:59 +0000 |
commit | 0dcc3cdca5b6f0fcb64cce756e552f43c74785e7 (patch) | |
tree | 278dfe2d4a0ba830b759a2b039e46b74d598bb1e /Misc | |
parent | 891f2631f576dfc515627074cccb07e0ffdff156 (diff) | |
download | cpython-git-0dcc3cdca5b6f0fcb64cce756e552f43c74785e7.tar.gz |
Merged revisions 69100 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r69100 | antoine.pitrou | 2009-01-29 21:19:34 +0100 (jeu., 29 janv. 2009) | 5 lines
Issue #2047: shutil.move() could believe that its destination path was
inside its source path if it began with the same letters (e.g. "src" vs.
"src.new").
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -147,6 +147,10 @@ Core and Builtins Library ------- +- Issue #2047: shutil.move() could believe that its destination path was + inside its source path if it began with the same letters (e.g. "src" vs. + "src.new"). + - Added the ttk module. See issue #2983: Ttk support for Tkinter. - Removed isSequenceType(), isMappingType, and isNumberType() from the |