[Python-checkins] python/dist/src/Doc/whatsnew whatsnew23.tex,1.5,1.6

akuchling@sourceforge.net akuchling@sourceforge.net
Sun, 14 Apr 2002 19:27:57 -0700


Update of /cvsroot/python/python/dist/src/Doc/whatsnew
In directory usw-pr-cvs1:/tmp/cvs-serv16021

Modified Files:
	whatsnew23.tex 
Log Message:
Add items


Index: whatsnew23.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew23.tex,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** whatsnew23.tex	3 Apr 2002 22:44:47 -0000	1.5
--- whatsnew23.tex	15 Apr 2002 02:27:55 -0000	1.6
***************
*** 183,186 ****
--- 183,203 ----
  
  %======================================================================
+ \section{PEP 278: Universal Newline Support}
+ 
+ XXX write this section
+ 
+ %Highlights: import and friends will understand any of \r, \n and \r\n
+ %as end of line. Python file input will do the same if you use mode 'U'.
+ %Everything can be disabled by configuring with --without-universal-newlines.
+ 
+ 
+ \begin{seealso}
+ 
+ \seepep{278}{Universal Newline Support}{Written 
+ and implemented by Jack Jansen.}
+ 
+ \end{seealso}
+ 
+ %======================================================================
  \section{PEP 285: The \class{bool} Type}
  
***************
*** 208,211 ****
--- 225,231 ----
  Readline: Add get_history_item, get_current_history_length, and
  redisplay functions.
+ 
+ Add optional arg to string methods strip(), lstrip(), rstrip().
+ The optional arg specifies characters to delete.