[Python-checkins] CVS: python/dist/src/Misc NEWS,1.260,1.261

Martin v. L?wis loewis@users.sourceforge.net
Sun, 30 Sep 2001 13:32:13 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv10858/Misc

Modified Files:
	NEWS 
Log Message:
Patch #462190, patch #464070: Support quoted printable in the binascii module.
Decode and encode underscores for header style encoding. Fixes bug #463996.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.260
retrieving revision 1.261
diff -C2 -d -r1.260 -r1.261
*** NEWS	2001/09/30 05:09:36	1.260
--- NEWS	2001/09/30 20:32:11	1.261
***************
*** 7,11 ****
--- 7,16 ----
  Core
  
+ - binascii has now two quopri support functions, a2b_qp and b2a_qp.
+ 
  Library
+ 
+ - quopri's encode and decode methods take an optional header parameter,
+   which indicates whether output is intended for the header 'Q' encoding.
  
  Tools