Changeset 388 for python/vendor/current/Lib/macpath.py
- Timestamp:
- Mar 19, 2014, 11:11:30 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/vendor/current/Lib/macpath.py
r2 r388 207 207 for c in components[1:]: 208 208 path = join(path, c) 209 path = Carbon.File.FSResolveAliasFile(path, 1)[0].as_pathname() 210 return path 211 212 supports_unicode_filenames = False 209 try: 210 path = Carbon.File.FSResolveAliasFile(path, 1)[0].as_pathname() 211 except Carbon.File.Error: 212 pass 213 return path 214 215 supports_unicode_filenames = True
Note:
See TracChangeset
for help on using the changeset viewer.