diff options
author | Brett Cannon <bcannon@gmail.com> | 2004-07-10 22:55:15 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2004-07-10 22:55:15 (GMT) |
commit | f50299c3787757bfe5d637f5de6d4b995d6beeb0 (patch) | |
tree | c22c127c41a0e605836fd68ff1b09b351559139a /Misc | |
parent | 711e7d97e4bebec002233e7caa72fc43ffba06a5 (diff) | |
download | cpython-f50299c3787757bfe5d637f5de6d4b995d6beeb0.zip cpython-f50299c3787757bfe5d637f5de6d4b995d6beeb0.tar.gz cpython-f50299c3787757bfe5d637f5de6d4b995d6beeb0.tar.bz2 |
posixpath.realpath() now detects symlink loops and returns the path just before
the loop starts.
Closes bug #930024. Thanks AM Kuchling.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -29,6 +29,10 @@ Extension modules Library ------- +- Bug #930024: posixpath.realpath() now handles infinite loops in symlinks by + returning the last point in the path that was not part of any loop. Thanks + AM Kuchling. + - Bug #980327: ntpath not handles compressing erroneous slashes between the drive letter and the rest of the path. Also clearly handles UNC addresses now as well. Thanks Paul Moore. |