Path: csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'cpython': 0.05; 'kind,': 0.05; 'bits': 0.07; 'bytes.': 0.07; 'nicely': 0.07; 'python': 0.09; 'bytes,': 0.09; 'bytes;': 0.09; 'enum': 0.09; 'it;': 0.09; 'itself,': 0.09; 'subject:()': 0.09; 'tracing': 0.09; 'tuple': 0.09; 'typedef': 0.09; 'itself.': 0.11; '(the': 0.15; '24,': 0.16; 'crashes': 0.16; 'elsewhere.': 0.16; 'expression,': 0.16; 'index.': 0.16; 'index;': 0.16; 'lower,': 0.16; 'merely': 0.16; 'pointers,': 0.16; 'py_ssize_t': 0.16; 'subject:array': 0.16; 'value;': 0.16; 'wrote:': 0.17; 'bytes': 0.17; 'pointer': 0.17; 'earlier': 0.21; 'object.': 0.22; 'struct': 0.22; 'comment:': 0.23; 'elements': 0.23; 'for?': 0.23; 'downloaded': 0.24; 'signed': 0.24; 'least': 0.25; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'fit': 0.26; 'skip:" 20': 0.26; 'am,': 0.27; 'guess': 0.27; 'start,': 0.27; 'actual': 0.28; 'chris': 0.28; 'omitted': 0.29; 'objects': 0.29; 'included': 0.29; 'source': 0.29; "i'm": 0.29; 'knows': 0.30; 'notes': 0.30; 'expect': 0.31; 'code': 0.31; 'structure': 0.32; 'stands': 0.33; 'values.': 0.33; 'to:addr:python-list': 0.33; 'list': 0.35; 'whatever': 0.35; 'so,': 0.35; 'but': 0.36; 'skip:{ 10': 0.36; 'does': 0.37; 'rather': 0.37; 'data': 0.37; 'subject:: ': 0.38; 'object': 0.38; 'nothing': 0.38; 'talk': 0.38; 'gives': 0.39; 'to:addr:python.org': 0.39; 'step': 0.39; 'where': 0.40; 'your': 0.60; 'containing': 0.61; 'received:network': 0.61; 'back': 0.62; 'received:phx3.secureserver.net': 0.62; 'received:prod.phx3.secureserver.net': 0.62; 'provide': 0.62; 'received:unknown': 0.63; 'more': 0.63; 'decided': 0.65; 'union': 0.66; 'header:Reply-To:1': 0.68; 'contrary': 0.71; 'million': 0.72; 'reply-to:no real name:2**0': 0.72; '24.': 0.84; 'elements:': 0.84; 'stop,': 0.84; 'received:173.201': 0.91; 'step.': 0.91 Date: Mon, 29 Oct 2012 11:00:08 -0700 From: Andrew Robinson User-Agent: Mozilla/5.0 (X11; Linux i686; rv:8.0) Gecko/20111126 Thunderbird/8.0 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Negative array indicies and slice() References: <6998a955-7b34-4f4f-b8d6-62d1028f7561@googlegroups.com> <4c024364-84df-403b-8b9e-4a4c8f06121c@googlegroups.com> <508e6649$0$29967$c3e8da3$5496439d@news.astraweb.com> <508E1BC9.3000308@r3dsolutions.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: andrew3@r3dsolutions.com List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 89 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1351559168 news.xs4all.nl 6845 [2001:888:2000:d::a6]:45634 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:32450 On 10/29/2012 06:53 AM, Chris Angelico wrote: > Can you provide links to these notes? I'm looking at > cpython/Include/sliceobject.h that has this comment: > > /* > > A slice object containing start, stop, and step data members (the > names are from range). After much talk with Guido, it was decided to > let these be any arbitrary python type. Py_None stands for omitted values. > */ > > Also, the code for slice objects in CPython works with Py_ssize_t (a > signed quantity of the same length as size_t), which will allow at > least 2**31 for an index. I would guess that your crashes were nothing > to do with 20 million elements and slices. > > ChrisA Let's look at the source code rather than the web notes -- the source must be the true answer anyhow. I downloaded the source code for python 3.3.0, as the tbz; In the directory "Python-3.3.0/Python", look at Python-ast.c, line 2089 & ff. Clearly a slice is malloced for a slice_ty type. It has four elements: kind, lower, upper, and step. So, tracing it back to the struct definition... "Include/Python-ast.h" has "typedef struct _slice *slice_ty;" And, here's the answer!: enum _slice_kind {Slice_kind=1, ExtSlice_kind=2, Index_kind=3}; struct _slice { enum _slice_kind kind; union { struct { expr_ty lower; expr_ty upper; expr_ty step; } Slice; struct { asdl_seq *dims; } ExtSlice; struct { expr_ty value; } Index; } v; }; So, slice() does indeed have arbitrary python types included in it; contrary to what I read elsewhere. expr_ty is a pointer to an arbitrary expression, so the actual structure is 4 pointers, at 32 bits each = 16 bytes. The size of the structure itself, given in an earlier post, is 20 bytes -- which means one more pointer is involved, perhaps the one pointing to the slice structure itself. Hmm...! An empty tuple gives sys.getsizeof( () ) = 24. But, I would expect a tuple to be merely a list of object pointers; hence I would expect 4 bytes for len(), and then a head pointer 4 bytes, and then a pointer for each object. 3 objects gives 12 bytes, + 8 = 16 bytes. Then we need one more pointer so Python knows where the struct is... So a Tuple of 3 objects ought to fit nicely into 20 bytes; the same size as slice() -- but it's 24, even when empty... And 36 when initialized... What are the extra 16 bytes for? All I see is: typedef struct { object** whatever } PyTupleObject;