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 ocean-city
Recipients ezio.melotti, loewis, ocean-city, pitrou, r.david.murray
Date 2009-05-04.01:51:13
SpamBayes Score 2.8745972e-09
Marked as misclassified No
Message-id <1241401877.11.0.779938154857.issue5913@psf.upfronthosting.co.za>
In-reply-to
Content
I hope attached patch works.

>>> import os
>>> os.listdir("")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
WindowsError: [Error 3] 指定されたパスが見つかりません。: ''
[36200 refs]
>>> os.listdir(u"")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
WindowsError: [Error 3] 指定されたパスが見つかりません。: u''

# Error message says "Cannot find specified path"
History
Date User Action Args
2009-05-04 01:51:17ocean-citysetrecipients: + ocean-city, loewis, pitrou, ezio.melotti, r.david.murray
2009-05-04 01:51:17ocean-citysetmessageid: <1241401877.11.0.779938154857.issue5913@psf.upfronthosting.co.za>
2009-05-04 01:51:15ocean-citylinkissue5913 messages
2009-05-04 01:51:14ocean-citycreate