[Python-Dev] Re: [Python-checkins] CVS: python/nondist/peps pep-0200.txt,1.28,1.29

Guido van Rossum guido@beopen.com
Fri, 25 Aug 2000 10:32:57 -0500


>  > +     * Range literals - Thomas Wouters
>  > +       SF Patch 100902
> 
>   I thought this was done as well.

No:

$ ./python
Python 2.0b1 (#79, Aug 25 2000, 08:31:47)  [GCC egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)] on linux2
Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
Copyright 1995-2000 Corporation for National Research Initiatives (CNRI)
>>> [1:10]
  File "<stdin>", line 1
    [1:10]
      ^
SyntaxError: invalid syntax
>>> 

--Guido van Rossum (home page: http://www.pythonlabs.com/~guido/)