diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-07-07 01:38:35 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-07-07 01:38:35 (GMT) |
commit | 006c725426e1cbc01906c74488783dcb2df1a5c0 (patch) | |
tree | a0a8d90557ea3764d38c6ff442ea8cd26fca02f6 /Misc | |
parent | 7447edbc9e3d751f75ded15977fc22885cec1320 (diff) | |
parent | e50dafcd636ba32db890600164698bb070d40d97 (diff) | |
download | cpython-006c725426e1cbc01906c74488783dcb2df1a5c0.zip cpython-006c725426e1cbc01906c74488783dcb2df1a5c0.tar.gz cpython-006c725426e1cbc01906c74488783dcb2df1a5c0.tar.bz2 |
Merge pathlib fixes
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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. |