summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library/2023-11-24-09-27-01.gh-issue-112361.kYtnHW.rst
Commit message (Collapse)AuthorAgeFilesLines
* Python 3.13.0a3v3.13.0a3Thomas Wouters2024-01-171-2/+0
|
* GH-112361: Speed up pathlib by removing some temporary objects. (#112362)Barney Gale2023-11-251-0/+2
Construct only one new list object (using `list.copy()`) when creating a new path object with a modified tail. This slightly speeds up `with_name()` and `with_suffix()`