Add in a comment that was removed in 240adc564539 (requested by Victor Stinner)

This commit is contained in:
Brian Curtin 2013-07-22 19:05:48 -05:00
parent 52b9fdfbc2
commit a3852ff33a

View file

@ -188,6 +188,7 @@ def ismount(path):
# 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