This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Path.replace and Path.rename naming, behavior and documentation
Type: behavior Stage: resolved
Components: Documentation, Library (Lib) Versions: Python 3.6
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: docs@python Nosy List: albertogomcas, docs@python, r.david.murray
Priority: normal Keywords:

Created on 2017-08-09 08:07 by albertogomcas, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg299976 - (view) Author: Alberto Gomez Casado (albertogomcas) Date: 2017-08-09 08:07
I find the naming of Path.replace quite unfortunate, coming from the os.path and basestring mindset, the expectation would be that it would change some substring by another substring in the Path instance. Instead, it _moves_ the file indicated by the Path object in the file system. Most of the methods of Path have no effect in the filesystem, and we have here one with a slightly misleading name which goes and moves your files around.

Practically the same operation is done with Path.rename, which is less surprising since it matches popular OS commands/UIs (ren, Rename).

IMHO Path.replace should not exist as is and a keyword modifier (silent?) for Path.rename toggles between the minor behavior differences of the two. 

Additionally:

Both calls lack any kind of return, which leads me to expect after a rename/replace the Path instance would be changed to the new path. This is not the case, after the call the Path instance keeps "pointing" to the previous (and quite likely now useless) path. Returning the new path would be another reasonable option. In any case, I think the documentation should mention this behavior explicitly. 

And, while we are at it, having implemented the relatively dangerous replace/rename (along with convenience shorcuts for reading, writing, opening...), why was a Path.copy not included?
msg300001 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2017-08-09 13:30
Both the replace and rename functions will remain in the API, as they mirror the os module, not the os itself.  I agree that the naming is unfortunate, but it has the weight of history behind it, so we are stuck with it.  Issue 24229 rejected adding a copy method.  

Having replace and rename return a value strikes me as a good idea.  Please open a separate issue with that enhancement proposal, and nosy 'pitrou', who is the author of the pathlib module.
History
Date User Action Args
2022-04-11 14:58:49adminsetgithub: 75337
2017-08-09 13:30:18r.david.murraysetstatus: open -> closed

nosy: + r.david.murray
messages: + msg300001

resolution: rejected
stage: resolved
2017-08-09 08:07:01albertogomcascreate