summaryrefslogtreecommitdiffstats
path: root/platform_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'platform_utils.py')
-rw-r--r--platform_utils.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/platform_utils.py b/platform_utils.py
index 29060099..e20198ee 100644
--- a/platform_utils.py
+++ b/platform_utils.py
@@ -251,12 +251,3 @@ def readlink(path):
251 return platform_utils_win32.readlink(_makelongpath(path)) 251 return platform_utils_win32.readlink(_makelongpath(path))
252 else: 252 else:
253 return os.readlink(path) 253 return os.readlink(path)
254
255
256def realpath(path):
257 """Return the canonical path of the specified filename, eliminating
258 any symbolic links encountered in the path.
259
260 Availability: Windows, Unix.
261 """
262 return os.path.realpath(path)