Changes between Version 1 and Version 2 of Ticket #2235, comment 3
- Timestamp:
- 2014-04-30T00:26:16Z (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2235, comment 3
v1 v2 1 1 [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: 2 2 a. chdir to each subdirectory in turn using relative paths (this changes the limitation to 255 characters per directory component); 3 b. on Windows, usethe Win32 API functions with the "`\\?\`" prefix directly via `ctypes` or similar.3 b. on Windows, call the Win32 API functions with the "`\\?\`" prefix directly via `ctypes` or similar. 4 4 5 5 b. seems like too much work.