summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2017-07-22 17:20:22 (GMT)
committerGiampaolo Rodola <g.rodola@gmail.com>2017-07-22 17:20:22 (GMT)
commit2b1e6e9696cb433c0e0da11145157d54275d119f (patch)
tree4ded3efdf0d63a9de76044c94c1aa63a2a51bce3 /Misc/NEWS
parent896145d9d266ee2758cfcd7691238cbc1f9e1ab8 (diff)
downloadcpython-2b1e6e9696cb433c0e0da11145157d54275d119f.zip
cpython-2b1e6e9696cb433c0e0da11145157d54275d119f.tar.gz
cpython-2b1e6e9696cb433c0e0da11145157d54275d119f.tar.bz2
bpo-30119: fix ftplib.FTP.putline() to throw an error for a illegal command (#1214)
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 ce4874a..38449c0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -376,6 +376,9 @@ Extension Modules
Library
-------
+- bpo-30119: ftplib.FTP.putline() now throws ValueError on commands that contains
+ CR or LF. Patch by Dong-hee Na.
+
- bpo-30879: os.listdir() and os.scandir() now emit bytes names when called
with bytes-like argument.