258
258
def _win32_rename(old, new):
259
fancy_rename(old, new, rename_func=os.rename, unlink_func=os.unlink)
261
On win32, if new exists, it must be moved out of the way first,
265
fancy_rename(old, new, rename_func=os.rename, unlink_func=os.unlink)
262
275
# Default is to just use the python builtins, but these can be rebound on