Message236047
>>> os.mkdir('dir')
>>> os.access('dir', os.W_OK)
True
>>> os.access('nonexistent', os.W_OK)
False
>>> open('dir/bar')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
FileNotFoundError: [Errno 2] No such file or directory: 'dir/bar'
>>> open('nonexistent/bar')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
FileNotFoundError: [Errno 2] No such file or directory: 'nonexistent/bar' |
|
| Date |
User |
Action |
Args |
| 2015-02-15 16:58:13 | BreamoreBoy | set | recipients:
+ BreamoreBoy, georg.brandl, ncoghlan, rupole, tim.golden, zach.ware, serhiy.storchaka, steve.dower |
| 2015-02-15 16:58:13 | BreamoreBoy | set | messageid: <1424019493.65.0.117328773928.issue22107@psf.upfronthosting.co.za> |
| 2015-02-15 16:58:13 | BreamoreBoy | link | issue22107 messages |
| 2015-02-15 16:58:13 | BreamoreBoy | create | |
|