File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -256,12 +256,13 @@ def absjoin(*parts):
256256
257257
258258def realpath (path ):
259- """Return the canonical path of the specified filename, eliminating any symbolic links encountered in the path.
259+ """Return the canonical path of the specified filename, resolving any symbolic links encountered in the path.
260260
261261 This function uses Python's stdlib `os.path.realpath` in most cases,
262262 except when inside IronPython because (guess what?) it is broken and
263263 doesn't really eliminate sym links, so, we fallback to a different
264- way to identifying symlinks in that situation."""
264+ way to identifying symlinks in that situation.
265+ """
265266 if not PY3 and is_ironpython ():
266267 if is_windows ():
267268 return _realpath_ipy_win (path )
You can’t perform that action at this time.
0 commit comments