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
..
2021-07-20 03:46:05 +05:30
2021-08-25 17:19:05 +05:30
2021-08-25 10:18:27 +05:30
2021-08-10 20:51:47 +05:30