Changes between Version 1 and Version 2 of Ticket #2235, comment 3


Ignore:
Timestamp:
2014-04-30T00:26:16Z (11 years ago)
Author:
daira
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2235, comment 3

    v1 v2  
    11[http://bugs.python.org/issue18199]. This will not be fixed in Python 2.x, so the only way for us to work around it is either to:
    22a. chdir to each subdirectory in turn using relative paths (this changes the limitation to 255 characters per directory component);
    3 b. on Windows, use the Win32 API functions with the "`\\?\`" prefix directly via `ctypes` or similar.
     3b. on Windows, call the Win32 API functions with the "`\\?\`" prefix directly via `ctypes` or similar.
    44
    55b. seems like too much work.