Path: csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.007 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'x86': 0.07; 'assembler': 0.09; 'sub': 0.09; 'xor': 0.09; "hasn't": 0.15; 'sat,': 0.15; 'clock.': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'mov': 0.16; 'wrote:': 0.17; 'bytes': 0.17; 'memory': 0.18; 'subject:skip:i 10': 0.22; 'header:In-Reply-To:1': 0.25; 'am,': 0.27; 'message-id:@mail.gmail.com': 0.27; 'subject:list': 0.28; 'to:addr:python-list': 0.33; 'received:google.com': 0.34; 'nov': 0.35; 'received:209.85': 0.35; 'but': 0.36; 'two': 0.37; 'received:209': 0.37; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'subject:-': 0.40; 'header:Received:5': 0.40; 'actually,': 0.84; 'rusi': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=T0tm3qLGTgECb//X7IpCHGvhz36pETDTNBJMA22+fGI=; b=UOjF5GguQ67KeTTP67xBsm75cYJX4U7PRNc1bCjKoQbPzcOwnJlh/xMmRIGHoaqw3m OilYESeEpoDT6eFr4bFDVYTE12K6CgBcymV1wwbWfF+O/6GEVu0KjVsVM5fgXcIKIFKC qydWdmKOsxqxvK43xIan/LuPyU00zPN25iQwZ74fBWr5c0Cm4x86Hc9ZndQ5xFK2kEM/ EtLVBAIQNaQYqzLgWPFHRoILlM5Uv53VaNkPdH3kRXmVHDWhAFeSRbgIBIn9wbnshsJg TndqCowG+kXH89YYgpt4xxCHcrFU2g+iRy8REF51RM9fdDTIJHWfiaGvCezZsGf+4XjO prsQ== MIME-Version: 1.0 In-Reply-To: References: <50978323$0$6908$e4fe514c@news2.news.xs4all.nl> <5098d2ac$0$29980$c3e8da3$5496439d@news.astraweb.com> <5099bf7d$0$29980$c3e8da3$5496439d@news.astraweb.com> <509ca4b5$0$29980$c3e8da3$5496439d@news.astraweb.com> Date: Sat, 10 Nov 2012 02:23:35 +1100 Subject: Re: Multi-dimensional list initialization From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list 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: 10 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1352474618 news.xs4all.nl 6939 [2001:888:2000:d::a6]:43635 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:33030 On Sat, Nov 10, 2012 at 2:05 AM, rusi wrote: > In x86 assembler > mov ax, 0 > is 4 bytes Three bytes actually, B8 00 00 if my memory hasn't failed me. BA for DX, B9 ought to be BX and BB CX, I think. But yes, the xor or sub is two bytes and one clock. ChrisA