Message151105
| Author |
santoso.wijaya |
| Recipients |
amaury.forgeotdarc, brian.curtin, pitrou, santoso.wijaya, tim.golden |
| Date |
2012年01月12日.01:13:27 |
| SpamBayes Score |
0.00014534047 |
| Marked as misclassified |
No |
| Message-id |
<1326330808.57.0.00696759333452.issue13772@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Confirmed (on latest py33 build):
>>> os.listdir('Lib\\bar')[:4]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NotADirectoryError: [Error 267] The directory name is invalid: 'Lib\\bar\\*.*'
[61658 refs]
... after manually deleting the file-symlink `bar` ...
>>> os.symlink('.\\test', 'Lib\\bar', target_is_directory=True)
[61658 refs]
>>> os.listdir('Lib\\bar')[:4]
['185test.db', 'audiotest.au', 'autotest.py', 'badcert.pem']
[61666 refs] |
|