Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.datemas.de!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed3a.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.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'subject:Python': 0.06; '21,': 0.07; 'elegant': 0.07; 'cc:addr:python-list': 0.11; 'blocks': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'lisp,': 0.16; 'subject:library': 0.16; 'syntax,': 0.16; 'all.': 0.16; 'wrote:': 0.18; 'code.': 0.18; 'bit': 0.19; 'feb': 0.22; 'cc:addr:python.org': 0.22; 'creating': 0.23; 'looks': 0.24; 'cc:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'function': 0.29; 'chris': 0.29; 'message- id:@mail.gmail.com': 0.30; 'code': 0.31; 'though.': 0.31; 'fri,': 0.33; 'subject:the': 0.34; "can't": 0.35; 'point.': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'pm,': 0.38; 'does': 0.39; 'how': 0.40; 'new': 0.61; 'more': 0.64; 'to:none': 0.92 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:cc :content-type; bh=xS+EworyfirBiIO5hggUPtZpKyYAMASDZDGpPxQ9G+E=; b=rIDX8y2+HbUjBCVVoohacHvYTHofg6U+oZx+R2YpKXMqQDpHcFv5KuuiG1ge0u0zcn 7SVGijkPQpMKOcXMf/4OkO/T9INHVGr3xi1hB/qFFIT6RPf6/MHSYltgQw/OwngRBeHY 6YE1fKUzkY1rGEuwmCBVMqsqSWBJIORehUa9XRCr9ZfyO+IihGTZIfDE9d4YfO5qlay9 qxRZ9QjyWJMy9r//OFQt5ZWzM9VteXqyI8utgX1P9SqNTat7AykqZTp/CtaQspCXWjW2 9EfZYEdPCqKFywR1Qx0zRLcr4L+DZ4W5syp83rW/GnL6MyYW1xk3yrKz02lXHovImQsX zNvQ== MIME-Version: 1.0 X-Received: by 10.68.200.74 with SMTP id jq10mr8193572pbc.169.1392979781122; Fri, 21 Feb 2014 02:49:41 -0800 (PST) In-Reply-To: <87bny069sn.fsf@elektro.pacujo.net> References: <87mwhm6q3e.fsf@elektro.pacujo.net> <5306f95d$0$29985$c3e8da3$5496439d@news.astraweb.com> <87y515dj6z.fsf@elektro.pacujo.net> <87bny069sn.fsf@elektro.pacujo.net> Date: Fri, 21 Feb 2014 21:49:41 +1100 Subject: Re: Commonly-used names in the Python standard library From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 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: 14 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1392979785 news.xs4all.nl 2962 [2001:888:2000:d::a6]:34226 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:66824 On Fri, Feb 21, 2014 at 9:26 PM, Marko Rauhamaa wrote: > Chris Angelico : > >> How does C let you create new keywords? > > With #define. Nowhere near as elegant (flexible, hygienic) as in Lisp, > but used to create new syntax: That can't create new syntax, though. All it can do is create a thing that looks like a symbol or a function call and plonks a bit of code in at that point. That's all. It's more akin to creating a function that's able to work with blocks of unexecuted code. ChrisA