summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-07-07 01:38:35 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-07-07 01:38:35 (GMT)
commit006c725426e1cbc01906c74488783dcb2df1a5c0 (patch)
treea0a8d90557ea3764d38c6ff442ea8cd26fca02f6 /Misc
parent7447edbc9e3d751f75ded15977fc22885cec1320 (diff)
parente50dafcd636ba32db890600164698bb070d40d97 (diff)
downloadcpython-006c725426e1cbc01906c74488783dcb2df1a5c0.zip
cpython-006c725426e1cbc01906c74488783dcb2df1a5c0.tar.gz
cpython-006c725426e1cbc01906c74488783dcb2df1a5c0.tar.bz2
Merge pathlib fixes
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index edd46d8..ca703fb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -108,6 +108,12 @@ 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.
+
- Issue #15014: Added 'auth' method to smtplib to make implementing auth
mechanisms simpler, and used it internally in the login method.