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 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]
History
Date User Action Args
2012-01-12 01:13:28santoso.wijayasetrecipients: + santoso.wijaya, amaury.forgeotdarc, pitrou, tim.golden, brian.curtin
2012-01-12 01:13:28santoso.wijayasetmessageid: <1326330808.57.0.00696759333452.issue13772@psf.upfronthosting.co.za>
2012-01-12 01:13:28santoso.wijayalinkissue13772 messages
2012-01-12 01:13:27santoso.wijayacreate