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 brian.curtin, loewis, mandel, pitrou, santoso.wijaya, tim.golden, vstinner
Date 2011-10-24.23:34:18
SpamBayes Score 8.656409e-13
Marked as misclassified No
Message-id <1319499259.16.0.52450869223.issue13234@psf.upfronthosting.co.za>
In-reply-to
Content
There are also several other edge cases to be taken care of:

    Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win
    32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import os
    >>> os.listdir(r'\\?\C:\Python27/')
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    WindowsError: [Error 123] The filename, directory name, or volume label syntax i
    s incorrect: '\\\\?\\C:\\Python27/*.*'
    >>> os.listdir(r'\\?\C:/Python27\Lib')
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    WindowsError: [Error 3] The system cannot find the path specified: '\\\\?\\C:/Py
    thon27\\Lib/*.*'
History
Date User Action Args
2011-10-24 23:34:19santoso.wijayasetrecipients: + santoso.wijaya, loewis, pitrou, vstinner, tim.golden, brian.curtin, mandel
2011-10-24 23:34:19santoso.wijayasetmessageid: <1319499259.16.0.52450869223.issue13234@psf.upfronthosting.co.za>
2011-10-24 23:34:18santoso.wijayalinkissue13234 messages
2011-10-24 23:34:18santoso.wijayacreate