Adjust feature detection for 2.7.15

This commit is contained in:
Anthony Sottile
2018-05-21 22:20:37 -07:00
parent f88e007f52
commit 7f29fd5591

View File

@@ -52,7 +52,11 @@ def broken_deep_listdir(): # pragma: no cover (platform specific)
os.listdir(str('\\\\?\\') + os.path.abspath(str('.')))
except OSError:
return True
else:
try:
os.listdir(b'\\\\?\C:' + b'\\' * 300)
except TypeError:
return True
except OSError:
return False