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

This commit is contained in:
Florent Xicluna 2010-03-21 12:27:20 +00:00
parent b88fbf4fef
commit cf82fa6f91
2 changed files with 6 additions and 1 deletions

View File

@ -206,7 +206,10 @@ def realpath(path):
path = components[0] + ':'
for c in components[1:]:
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
supports_unicode_filenames = False

View File

@ -24,6 +24,8 @@ Core and Builtins
Library
-------
- Issue #8179: Fix macpath.realpath() on a non-existing path.
- Issue #8024: Update the Unicode database to 5.2.
- Issue #8104: socket.recv_into() and socket.recvfrom_into() now support