yt-dlp/yt_dlp/downloader
Paul Wrubel d75201a873
Use `os.replace` where applicable (#793)
When using 
```py
os.remove(encodeFilename(filename))
os.rename(encodeFilename(temp_filename), encodeFilename(filename))
```
the `os.remove` need not be atomic and so can be executed arbitrarily compared to the immediately following rename call. It is better to use `os.replace` instead

Authored by: paulwrubel
2021-08-27 07:57:20 +05:30
..
__init__.py fix bug in 6251555f1c 2021-08-24 06:23:21 +05:30
common.py Use `os.replace` where applicable (#793) 2021-08-27 07:57:20 +05:30
dash.py
external.py [aria2c] Obey `--rate-limit` 2021-08-27 00:59:36 +05:30
f4m.py
fragment.py [webvtt] Merge daisy-chained duplicate cues (#638) 2021-08-10 01:52:30 +05:30
hls.py [webvtt] Fix timestamp overflow adjustment (#698) 2021-08-15 21:03:06 +05:30
http.py Revert erroneous use of the `Content-Length` header (#637) 2021-08-11 21:09:17 +05:30
ism.py
mhtml.py
niconico.py
rtmp.py
rtsp.py
websocket.py
youtube_live_chat.py