I feel like the semantics of PurePath.suffix
(https://docs.python.org/3/library/pathlib.html#pathlib.PurePath.suffix) and
PurePath.stem define this pretty unambiguously.
I.e., it should be:
p = Path("foo.bar.txt")
p.with_stem("quux")
"quux.txt"
p.with_stem("baz.quux")
"baz.quux.txt"
_______________________________________________
Python-ideas mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at
https://mail.python.org/archives/list/[email protected]/message/VHADSSZDTMKPZPY2YNX2CIMV2475JVDM/
Code of Conduct: http://python.org/psf/codeofconduct/