Kaydet (Commit) cf82fa6f authored tarafından Florent Xicluna's avatar Florent Xicluna

Issue #8179: Fix macpath.realpath() on a non-existing path.

üst b88fbf4f
...@@ -206,7 +206,10 @@ def realpath(path): ...@@ -206,7 +206,10 @@ def realpath(path):
path = components[0] + ':' path = components[0] + ':'
for c in components[1:]: for c in components[1:]:
path = join(path, c) path = join(path, c)
path = Carbon.File.FSResolveAliasFile(path, 1)[0].as_pathname() try:
path = Carbon.File.FSResolveAliasFile(path, 1)[0].as_pathname()
except Carbon.File.Error:
pass
return path return path
supports_unicode_filenames = False supports_unicode_filenames = False
...@@ -24,6 +24,8 @@ Core and Builtins ...@@ -24,6 +24,8 @@ Core and Builtins
Library Library
------- -------
- Issue #8179: Fix macpath.realpath() on a non-existing path.
- Issue #8024: Update the Unicode database to 5.2. - Issue #8024: Update the Unicode database to 5.2.
- Issue #8104: socket.recv_into() and socket.recvfrom_into() now support - Issue #8104: socket.recv_into() and socket.recvfrom_into() now support
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment