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 serhiy.storchaka
Recipients BreamoreBoy, georg.brandl, ncoghlan, rupole, serhiy.storchaka, steve.dower, tim.golden, zach.ware
Date 2015-02-15.09:13:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1423991605.88.0.632649028813.issue22107@psf.upfronthosting.co.za>
In-reply-to
Content
And what returns os.access for writable directories and non-existent files?

os.mkdir('dir')
os.access('dir', os.W_OK)          # what returns?
os.access('nonexistent', os.W_OK)  # what returns or raises?
History
Date User Action Args
2015-02-15 09:13:26serhiy.storchakasetrecipients: + serhiy.storchaka, georg.brandl, ncoghlan, rupole, tim.golden, BreamoreBoy, zach.ware, steve.dower
2015-02-15 09:13:25serhiy.storchakasetmessageid: <1423991605.88.0.632649028813.issue22107@psf.upfronthosting.co.za>
2015-02-15 09:13:25serhiy.storchakalinkissue22107 messages
2015-02-15 09:13:25serhiy.storchakacreate