[Python-checkins] cpython: Reflow paragraph.

r.david.murray python-checkins at python.org
Sat Feb 22 22:34:49 CET 2014


http://hg.python.org/cpython/rev/9db97583d666
changeset:   89328:9db97583d666
user:        R David Murray <rdmurray at bitdance.com>
date:        Sat Feb 22 16:32:07 2014 -0500
summary:
  Reflow paragraph.

files:
  Doc/library/os.path.rst |  16 ++++++++--------
  1 files changed, 8 insertions(+), 8 deletions(-)


diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst
--- a/Doc/library/os.path.rst
+++ b/Doc/library/os.path.rst
@@ -193,14 +193,14 @@
 
 .. function:: ismount(path)
 
-   Return ``True`` if pathname *path* is a :dfn:`mount point`: a point in a file
-   system where a different file system has been mounted.  On POSIX, the function checks
-   whether *path*'s parent, :file:`path/..`, is on a different device than *path*,
-   or whether :file:`path/..` and *path* point to the same i-node on the same
-   device --- this should detect mount points for all Unix and POSIX variants.
-   On Windows, a drive letter root and a share UNC are always mount
-   points, and for any other path ``GetVolumePathName`` is called to see if it
-   is different from the input path.
+   Return ``True`` if pathname *path* is a :dfn:`mount point`: a point in a
+   file system where a different file system has been mounted.  On POSIX, the
+   function checks whether *path*'s parent, :file:`path/..`, is on a different
+   device than *path*, or whether :file:`path/..` and *path* point to the same
+   i-node on the same device --- this should detect mount points for all Unix
+   and POSIX variants.  On Windows, a drive letter root and a share UNC are
+   always mount points, and for any other path ``GetVolumePathName`` is called
+   to see if it is different from the input path.
 
    .. versionadded:: 3.4
       Support for detecting non-root mount points on Windows.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list