Python не может удалить временные файлы

fd, fname = mkstemp(suffix='.txt', text=True)
os.close(fd)
os.remove(fname)
Real Raccoon