[Python-checkins] python/dist/src/Misc NEWS,1.740,1.741

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Wed, 23 Apr 2003 12:06:14 -0700


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

Modified Files:
	NEWS 
Log Message:
SF patch 557704: netrc module can't handle all passwords

Revised netrc.py to include the additional ascii punctuation 
characters.  Omitted the other logic changes.  See 
Lib/netrc.py 1.17.

Since this is more of a feature request than a bug, 
including in Py2.3 but not recommending for backporting.



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.740
retrieving revision 1.741
diff -C2 -d -r1.740 -r1.741
*** NEWS	23 Apr 2003 02:39:16 -0000	1.740
--- NEWS	23 Apr 2003 19:06:08 -0000	1.741
***************
*** 128,131 ****
--- 128,133 ----
  -------
  
+ - netrc now allows Ascii punctuation characters in passwords.
+ 
  - shelve now supports the optional writeback argument, and exposes
    pickle protocol versions.