Path: csiph.com!usenet.pasdenom.info!gegeweb.org!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed4a.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.008 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'languages.': 0.04; 'subject:Python': 0.06; 'methods,': 0.09; 'pointers': 0.09; 'cc:addr:python-list': 0.11; 'jan': 0.12; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'wrote:': 0.18; 'passing': 0.19; 'cc:addr:python.org': 0.22; "aren't": 0.24; 'lets': 0.24; 'cc:2**0': 0.24; "i've": 0.25; 'pass': 0.26; 'header:In-Reply- To:1': 0.27; 'function': 0.29; 'am,': 0.29; "doesn't": 0.30; 'message-id:@mail.gmail.com': 0.30; 'subject:skip:i 10': 0.31; 'quite': 0.32; 'problem': 0.35; 'objects': 0.35; 'received:google.com': 0.35; 'method': 0.36; 'even': 0.60; 'around.': 0.60; 'become': 0.64; '2015': 0.84; '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=uaLWBBwlGtk9Szh7UKqB/Dw+g9IZAFkYxepqinEG9qs=; b=AQlWmKtOjIQU0fvxLuVpV+xoJzEztEPcmByfOFe3JbtIUzlZGzpyXBnSFcvCLUkx8A 4JNow1lKrp9HNqITsRktMg1u5z5ppkAl8Jb8vTmeRIqrYm9TpMbhNJXqtf90AAdc6c7G ntwQhUBd21hrPViQg+zmkZZ1Ry6I6sImmoS9lZ/ELMyNj+j7jMX8OSdspFLt8HKpksC/ BnFz1IkSGsqbp+9H1beLaZ+7xVBdLjMAHZZvoSGUEpxjY8iEJ2KYQcQRYLV1TUZrNxUd k9kuLwsK153sJzhNYlzk9lI4bjfpeV47AudV8KipgAGP1ldKqZVJLhSZto+8LTtrIZMz tNtQ== MIME-Version: 1.0 X-Received: by 10.42.95.12 with SMTP id d12mr21124636icn.12.1421532265881; Sat, 17 Jan 2015 14:04:25 -0800 (PST) In-Reply-To: References: <3d8068b3-7b63-43c0-bbf2-6111b2c73aa4@googlegroups.com> <87zj9kb2j0.fsf@elektro.pacujo.net> <54B86CF8.7040602@gmail.com> <54ba39e0$0$13008$c3e8da3$5496439d@news.astraweb.com> Date: Sun, 18 Jan 2015 09:04:25 +1100 Subject: Re: lambdak: multi-line lambda implementation in native Python 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: 11 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1421532601 news.xs4all.nl 2916 [2001:888:2000:d::a6]:51378 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:83954 On Sun, Jan 18, 2015 at 8:56 AM, Gregory Ewing wrote: > Ruby doesn't have that problem because it doesn't > have functions, only methods, and the only thing you > can do with a method in Ruby is call it. So functions aren't first-class objects in Ruby? Bleh. I've become quite accustomed to passing them around casually, in several languages. Even C lets you pass function pointers around. ChrisA