summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-07-07 01:37:15 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-07-07 01:37:15 (GMT)
commite50dafcd636ba32db890600164698bb070d40d97 (patch)
treea5c1283b9830358f11b61d6bb624f82bb98f5c60 /Misc/NEWS
parent7084e736db318ba83a879e2e93e7c76264e48dbf (diff)
downloadcpython-e50dafcd636ba32db890600164698bb070d40d97.zip
cpython-e50dafcd636ba32db890600164698bb070d40d97.tar.gz
cpython-e50dafcd636ba32db890600164698bb070d40d97.tar.bz2
Issue #20639: calling Path.with_suffix('') allows removing the suffix again.
Patch by July Tikhonov.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a8e6fd4..37d16eb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
+- Issue #20639: calling Path.with_suffix('') allows removing the suffix
+ again. Patch by July Tikhonov.
+
- Issue #21714: Disallow the construction of invalid paths using
Path.with_name(). Original patch by Antony Lee.