mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-06-05 20:42:41 +09:00
Merge 8172e74caf399031bacd17e94a304ee2dcf736a5 into 4e714f9df1ed2cccd51df60d45ff5504abe827b7
This commit is contained in:
commit
6febd85207
@ -2,5 +2,18 @@
|
||||
|
||||
import youtube_dl
|
||||
|
||||
import os
|
||||
|
||||
MAX_LENGTH = 0
|
||||
|
||||
for i in range(1000):
|
||||
try:
|
||||
os.stat('a' * i)
|
||||
except FileNotFoundError:
|
||||
pass
|
||||
except OSError:
|
||||
MAX_LENGTH = i - 1
|
||||
break
|
||||
|
||||
if __name__ == '__main__':
|
||||
youtube_dl.main()
|
||||
|
Loading…
x
Reference in New Issue
Block a user