This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Alex Richman
Recipients Alex Richman, Oliver Smith
Date 2017-08-31.17:30:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1504200618.59.0.101086392574.issue29707@psf.upfronthosting.co.za>
In-reply-to
Content
Can confirm, ran into this issue.  It's because os.path.ismount() works by checking if the path's parent is on a different device (e.g. st_dev is the same for 'path/' and 'path/..'), which obviously it is for a bind mount on the same filesystem.

It is actually documented that this is how it works (https://docs.python.org/2/library/os.path.html#os.path.ismount) but it's more of a passing comment than a warning, and who reads the docs for such an apparently simple function anyway? ;)

Agree that it should be fixed by parsing /proc/mounts instead of the current mess, perhaps using getmntent(3) and friends.
History
Date User Action Args
2017-08-31 17:30:18Alex Richmansetrecipients: + Alex Richman, Oliver Smith
2017-08-31 17:30:18Alex Richmansetmessageid: <1504200618.59.0.101086392574.issue29707@psf.upfronthosting.co.za>
2017-08-31 17:30:18Alex Richmanlinkissue29707 messages
2017-08-31 17:30:18Alex Richmancreate