summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2002-04-15 02:27:55 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2002-04-15 02:27:55 (GMT)
commitf367651472f66d663e022eb658c379e275adfb29 (patch)
treecd1e294b52278854339dd2a646d9fb6acbcefef5 /Doc/whatsnew
parent9ec4c78a5414883a9a22453d7930c2d26880570a (diff)
downloadcpython-f367651472f66d663e022eb658c379e275adfb29.zip
cpython-f367651472f66d663e022eb658c379e275adfb29.tar.gz
cpython-f367651472f66d663e022eb658c379e275adfb29.tar.bz2
Add items
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/whatsnew23.tex20
1 files changed, 20 insertions, 0 deletions
diff --git a/Doc/whatsnew/whatsnew23.tex b/Doc/whatsnew/whatsnew23.tex
index 67fb4c6..906c4d2 100644
--- a/Doc/whatsnew/whatsnew23.tex
+++ b/Doc/whatsnew/whatsnew23.tex
@@ -182,6 +182,23 @@ and Tim Peters, with other fixes from the Python Labs crew.}
%======================================================================
+\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}
XXX write this section
@@ -208,6 +225,9 @@ Expat is now included with the Python source
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.
+
%======================================================================
\section{Interpreter Changes and Fixes}