diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-09-11 07:12:54 -0700 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2019-09-11 15:12:54 +0100 |
commit | cbd7b2a399a8ff2ed9994c380b07ef598892b6b1 (patch) | |
tree | 35161eb03403f30537a26f37d756cc9538d464d6 /Misc/NEWS.d | |
parent | 4d2babd99022bf43dc659d9fe5700c1fc13808c4 (diff) | |
download | cpython-git-cbd7b2a399a8ff2ed9994c380b07ef598892b6b1.tar.gz |
bpo-31163: Added return values to pathlib.Path instance's rename and replace methods. (GH-13582) (GH-15944)
* bpo-31163: Added return values to pathlib.Path instance's rename and replace methods.
(cherry picked from commit 088a09af4bdeff52b9dedeb7acd1e82069f37d98)
Co-authored-by: hui shang <shangdahao@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-05-26-16-34-53.bpo-31163.21A802.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-05-26-16-34-53.bpo-31163.21A802.rst b/Misc/NEWS.d/next/Library/2019-05-26-16-34-53.bpo-31163.21A802.rst new file mode 100644 index 0000000000..6ec0746121 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-05-26-16-34-53.bpo-31163.21A802.rst @@ -0,0 +1,2 @@ +pathlib.Path instance's rename and replace methods now return the new Path +instance. |