Mention that resolve() canonicalizes the path under Windows

This commit is contained in:
Antoine Pitrou 2013-11-18 21:48:50 +01:00
parent 111b5e8681
commit 36f5f1f633
1 changed files with 2 additions and 1 deletions

View File

@ -600,7 +600,8 @@ Path resolution
The ``resolve()`` method makes a path absolute, resolving any symlink on
the way (like the POSIX realpath() call). It is the only operation which
will remove "``..``" path components.
will remove "``..``" path components. On Windows, this method will also
take care to return the canonical path (with the right casing).
Directory walking