From: R David Murray Date: Fri, 12 Jul 2013 22:21:41 +0000 (-0400) Subject: #18389: Clarify that relpath does not access the file system. X-Git-Tag: v2.7.6rc1~305 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f0102f189374368c848df0904903629edc33956;p=thirdparty%2FPython%2Fcpython.git #18389: Clarify that relpath does not access the file system. Initial patch by Madison May. --- diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index 5e245d0df5ba..c84aaf29e101 100644 --- a/Doc/library/os.path.rst +++ b/Doc/library/os.path.rst @@ -236,8 +236,10 @@ the :mod:`glob` module.) .. function:: relpath(path[, start]) - Return a relative filepath to *path* either from the current directory or from - an optional *start* point. + Return a relative filepath to *path* either from the current directory or + from an optional *start* directory. This is a path computation: the + filesystem is not accessed to confirm the existence or nature of *path* or + *start*. *start* defaults to :attr:`os.curdir`.