[Python-checkins] CVS: python/dist/src/Misc NEWS,1.242,1.243
Guido van Rossum
gvanrossum@users.sourceforge.net
Fri, 14 Sep 2001 09:35:19 -0700
Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv14426
Modified Files:
NEWS
Log Message:
Mention SMTP additions and hmac module.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.242
retrieving revision 1.243
diff -C2 -d -r1.242 -r1.243
*** NEWS 2001/09/13 05:38:55 1.242
--- NEWS 2001/09/14 16:35:16 1.243
***************
*** 24,27 ****
--- 24,33 ----
iterable object.
+ - The smtplib module now supports various authentication and security
+ features of the SMTP protocol through the new login() and starttls()
+ methods.
+
+ - A new hmac module implementing keyed hashing for message authentication.
+
Tools