Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #32355 > unrolled thread

Re: Negative array indicies and slice()

Started byAndrew Robinson <andrew3@r3dsolutions.com>
First post2012-10-28 19:31 -0700
Last post2012-10-28 19:31 -0700
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python


Contents

  Re: Negative array indicies and slice() Andrew Robinson <andrew3@r3dsolutions.com> - 2012-10-28 19:31 -0700

#32355 — Re: Negative array indicies and slice()

FromAndrew Robinson <andrew3@r3dsolutions.com>
Date2012-10-28 19:31 -0700
SubjectRe: Negative array indicies and slice()
Message-ID<mailman.3002.1351503232.27098.python-list@python.org>
Ok, hopefully this is better.  I love my own e-mail editor...

I can see that the slice() function can pass in arbitrary arguments.
I'm not sure for lists, which is what the range is applied to, why an 
argument like "a" would be part of a slice.
I *really* don't see what the advantage of a slice class is over a mere 
list in the order of start, stop, step eg: [ 1,4,9 ]

In a dictionary, where "a" could be a key -- I wasn't aware that there 
was a defined order that the idea of slice could apply to.

When I look at the documentation,
http://www.python.org/doc//current/c-api/slice

The only thing that slice has which is special, is that the the length 
of the sequence can be given -- and the start and stop index are either 
trimmed or an error (exception???) is thrown.

Where is the information on the more general case of slice()? :-\

I am thinking, can one use the 'super' type of access, to override -- 
within the list object itself -- the __getitem__ method, and after 
pre-processing -- call the shadowed method with the modified 
parameters?  That would allow me to use the normal a[-4:6] notation, 
without having to write a wrapper class that must be explicitly called.

I'm thinking something like,

PyListObject.__getitem__= lambda self, slice: ....

--Andrew.


[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web