We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d5113d commit b7c81d7Copy full SHA for b7c81d7
1 file changed
python-stdlib/os-path/os/path.py
@@ -12,6 +12,10 @@ def normpath(s):
12
return s
13
14
15
+def realpath(s):
16
+ return s
17
+
18
19
def abspath(s):
20
if s[0] != "/":
21
return os.getcwd() + "/" + s
0 commit comments