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 lazka
Recipients lazka, paul.moore, steve.dower, tim.golden, zach.ware
Date 2016-12-02.14:39:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1480689560.28.0.129916928722.issue28859@psf.upfronthosting.co.za>
In-reply-to
Content
It returns True for drives which don't exist and raises for paths starting with drives which don't exist.

>>> os.path.exists("C:\\")
True
>>> os.path.ismount("C:\\")
True
>>> os.path.ismount("C:\\doesnotexist")
False
>>> os.path.exists("F:\\")
False
>>> os.path.ismount("F:\\")
True
>>> os.path.ismount("F:\\doesnotexist")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Users\lazka\AppData\Local\Programs\Python\Python35\lib\ntpath.py", line 290, in ismount
    return path.rstrip(seps) == _getvolumepathname(path).rstrip(seps)
FileNotFoundError: [WinError 2] The system cannot find the file specified: 'F:\\doesnotexist'
History
Date User Action Args
2016-12-02 14:39:20lazkasetrecipients: + lazka, paul.moore, tim.golden, zach.ware, steve.dower
2016-12-02 14:39:20lazkasetmessageid: <1480689560.28.0.129916928722.issue28859@psf.upfronthosting.co.za>
2016-12-02 14:39:20lazkalinkissue28859 messages
2016-12-02 14:39:20lazkacreate