[Python-checkins] cpython: Add in a comment that was removed in 240adc564539 (requested by Victor Stinner)

brian.curtin python-checkins at python.org
Tue Jul 23 02:05:55 CEST 2013


http://hg.python.org/cpython/rev/d6213012d87b
changeset:   84803:d6213012d87b
user:        Brian Curtin <brian at python.org>
date:        Mon Jul 22 19:05:48 2013 -0500
summary:
  Add in a comment that was removed in 240adc564539 (requested by Victor Stinner)

files:
  Lib/posixpath.py |  1 +
  1 files changed, 1 insertions(+), 0 deletions(-)


diff --git a/Lib/posixpath.py b/Lib/posixpath.py
--- a/Lib/posixpath.py
+++ b/Lib/posixpath.py
@@ -188,6 +188,7 @@
         # It doesn't exist -- so not a mount point. :-)
         return False
     else:
+        # A symlink can never be a mount point
         if stat.S_ISLNK(s1.st_mode):
             return False
 

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


More information about the Python-checkins mailing list