Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Random832 Newsgroups: comp.lang.python Subject: Re: Why not allow empty code blocks? Date: Mon, 25 Jul 2016 10:36:56 -0400 Lines: 13 Message-ID: References: <5792cd34$0$1587$c3e8da3$5496439d@news.astraweb.com> <87vazwppxx.fsf@elektro.pacujo.net> <20160723082947.7cae8bd1@imp> <87fur0a44p.fsf@elektro.pacujo.net> <20160723095441.29562c54@imp> <57939373$0$1586$c3e8da3$5496439d@news.astraweb.com> <5794b1d7$0$1620$c3e8da3$5496439d@news.astraweb.com> <1469457416.2293088.676076929.367DBBE3@webmail.messagingengine.com> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de aWmonAePaFtFLw09KzvRJgqdOz/u446YKNgbXs6pCDcA== 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; 'operator': 0.03; 'array.': 0.07; 'subject:code': 0.07; '===': 0.09; 'identifier': 0.09; 'precedence': 0.09; 'received:internal': 0.09; 'subject:Why': 0.09; 'subject:not': 0.11; 'things.': 0.15; '18:13,': 0.16; '24,': 0.16; 'message-id:@webmail.messagingengine.com': 0.16; 'pointers,': 0.16; 'received:10.202': 0.16; 'received:10.202.2': 0.16; 'received:66.111': 0.16; 'received:66.111.4': 0.16; 'received:io': 0.16; 'received:messagingengine.com': 0.16; 'received:psf.io': 0.16; 'subject:allow': 0.16; 'wrote:': 0.16; 'pointer': 0.18; 'removed.': 0.18; 'appears': 0.23; 'slightly': 0.23; 'header:In-Reply-To:1': 0.24; 'sequence': 0.27; 'array': 0.29; 'usually': 0.33; 'int': 0.33; 'quite': 0.35; 'but': 0.36; 'to:addr:python-list': 0.36; 'subject:?': 0.36; 'subject:: ': 0.37; 'received:10': 0.37; 'being': 0.37; 'received:66': 0.38; 'to:addr:python.org': 0.40; 'where': 0.40; 'header:Message-Id:1': 0.61; 'jul': 0.72; '(they': 0.84 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=fastmail.com; h= content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-sasl-enc :x-sasl-enc; s=mesmtp; bh=8dwnyAaLg4f6DMhsryGPTPJyyjU=; b=vd5sjw vg/MeuiHkeutLTyfoYamsK2+pa+6oxqoDqueKCGnatcyLQs6yBfHoQPR6Pu8kuRP nanG6dyYJvbpgLXHndu511AjXCgIPeBsZI8GCosz5ECs1nyiCO1BkNl730iQ2Fch kNo6y7FoXYIl6JJWfHT0kea8suyceTxFD/W20= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=8dwnyAaLg4f6DMh sryGPTPJyyjU=; b=bDxVFCE1PNU2dbUgxK7/nxDkWVbprrehgxaLNZ2iv9+yDoV G9VKHvx/SBaGtpEzb/pjii0ALTBMue5hSIRknWomJ8H7RbhcEC411D0tIIV1yXRy 1OSaPAQK+jPGVEa6hMX/XkLxnGYIW5QHhmIOW54P/d3LkzDoNdSmiROj/yFA= X-Sasl-Enc: ijcjJXmHUvVTLZxJlOwiMnuK/54xKkd78LP8b5HB8giy 1469457416 X-Mailer: MessagingEngine.com Webmail Interface - ajax-30273df8 In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: <1469457416.2293088.676076929.367DBBE3@webmail.messagingengine.com> X-Mailman-Original-References: <5792cd34$0$1587$c3e8da3$5496439d@news.astraweb.com> <87vazwppxx.fsf@elektro.pacujo.net> <20160723082947.7cae8bd1@imp> <87fur0a44p.fsf@elektro.pacujo.net> <20160723095441.29562c54@imp> <57939373$0$1586$c3e8da3$5496439d@news.astraweb.com> <5794b1d7$0$1620$c3e8da3$5496439d@news.astraweb.com> Xref: csiph.com comp.lang.python:111864 On Sun, Jul 24, 2016, at 18:13, BartC wrote: > (They don't need to be elaborate to start being confusing. Take 'int > *a[]' and 'int (*a)[]'; one of these is an array of pointers, the other > a pointer to an array. Quite different! But which is which? int (*a)[]; === int x[]; where x is (*a). To work out the other one you need to know operator precedence, but you need to know operator precedence to understand a _lot_ of things. C type _casts_ are slightly harder, since you have to work out where the identifier belongs in a token sequence that has had it removed. But it's usually not hard [look for the sequence "*)", which is otherwise illegal and appears in most complicated type casts].