From: Guido van Rossum Date: Fri, 28 Dec 2001 20:57:14 +0000 (+0000) Subject: SF patch #497420 (Eduardo Pérez): ftplib: ftp anonymous password X-Git-Tag: v2.3c1~6936 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=606fe4e79f617f5b167cf0813cba1ccb3a3a2c19;p=thirdparty%2FPython%2Fcpython.git SF patch #497420 (Eduardo Pérez): ftplib: ftp anonymous password Instead of sending the real user and host, use "anonymous@" (i.e. no host name at all!) as the default anonymous FTP password. This avoids privacy violations. --- diff --git a/Misc/NEWS b/Misc/NEWS index 65ee65b9a0a8..77b6a42416d8 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,10 @@ Extension modules Library +- ftplib: to safeguard the user's privacy, anonymous login will use + "anonymous@" as default password, rather than the real user and host + name. + Tools/Demos Build