Skip to content

Commit b7c81d7

Browse files
committed
os.path: Add stub realpath() function.
1 parent 1d5113d commit b7c81d7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

python-stdlib/os-path/os/path.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ def normpath(s):
1212
return s
1313

1414

15+
def realpath(s):
16+
return s
17+
18+
1519
def abspath(s):
1620
if s[0] != "/":
1721
return os.getcwd() + "/" + s

0 commit comments

Comments
 (0)