[Python-checkins] python/dist/src/Doc/whatsnew whatsnew23.tex,1.23,1.24

mwh@users.sourceforge.net mwh@users.sourceforge.net
Tue, 11 Jun 2002 03:55:41 -0700


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

Modified Files:
	whatsnew23.tex 
Log Message:
This is my nearly two year old patch

[ 400998 ] experimental support for extended slicing on lists

somewhat spruced up and better tested than it was when I wrote it.

Includes docs & tests.  The whatsnew section needs expanding, and arrays
should support extended slices -- later.



Index: whatsnew23.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew23.tex,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** whatsnew23.tex	10 Jun 2002 18:58:19 -0000	1.23
--- whatsnew23.tex	11 Jun 2002 10:55:09 -0000	1.24
***************
*** 337,340 ****
--- 337,349 ----
  \end{seealso}
  
+ \section{Extended Slices\label{extended-slices}}
+ 
+ Ever since Python 1.4 the slice syntax has supported a third
+ ``stride'' argument, but the builtin sequence types have not supported
+ this feature (it was initially included at the behest of the
+ developers of the Numerical Python package).  This changes with Python
+ 2.3.
+ 
+ % XXX examples, etc.
  
  %======================================================================