Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!eternal-september.org!feeder.eternal-september.org!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!feeds.phibee-telecom.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.015 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'subject:Python': 0.05; 'enabled.': 0.07; 'python': 0.08; 'am,': 0.12; 'sections': 0.13; '16,': 0.15; '(is': 0.16; 'c++.': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'handy': 0.16; 'wrote:': 0.18; 'received:209.85.210.174': 0.21; 'received:mail- iy0-f174.google.com': 0.21; 'header:In-Reply-To:1': 0.22; 'project,': 0.28; "i'm": 0.28; 'message-id:@mail.gmail.com': 0.29; "it'd": 0.30; 'pretty': 0.31; 'actually': 0.31; 'anyone': 0.32; 'it.': 0.33; 'instead': 0.33; 'fri,': 0.34; 'to:addr:python-list': 0.35; 'project': 0.35; 'but': 0.37; 'received:google.com': 0.37; 'using': 0.37; 'received:209.85': 0.38; 'enough': 0.38; 'some': 0.38; 'first.': 0.39; "i'd": 0.39; 'received:209': 0.39; 'change': 0.40; 'to:addr:python.org': 0.40; "you'll": 0.61; 'day,': 0.65; '"for': 0.67; 'soon': 0.72; 'technique': 0.93 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=qPYXsbUFZtMQgRTSeTz7WZ0XUH3f7yHWLocUnXN8MsE=; b=VAjqZRoReojPGWoN7qvwYN3DFIZQZmAuXYGsf8C3R3BqVARHMpu6BwEgCs6Z+qMiGL WBB7/ZM+7lg4YUHKNh+veBRn5fpYBYVxFvp7BaACv6QhlSlX8jpevGkcAv8ouex9o97I ZUYEi9XejcHlg2tiSHq1Cbca9FZuGhjWPz9kSGd70xG0f2G2Ev1T8m2jcPWZg+gHsy8v YJJEw/GeydzvvFTfaisFA7nhsMJX8fSrOduFPqtx/pBmTQJB1eZozRCzmlTX0zS2wH4P bgSw1PmH60Jf0nSooznw1TC/Akmd2JMxy6j183GK7SaxhpcxspSvCHeE71ebyzlfCK+t izdQ== MIME-Version: 1.0 In-Reply-To: <4f61f9bf$0$1381$4fafbaef@reader2.news.tin.it> References: <4f612b19$0$1379$4fafbaef@reader2.news.tin.it> <8e72d74f-c844-4de3-8a37-f6b1fdc2291f@y27g2000yqy.googlegroups.com> <50e9ceec-40f1-4ead-b2b6-87328b30d084@ow8g2000pbc.googlegroups.com> <4f61c828$0$1390$4fafbaef@reader2.news.tin.it> <4f61d221$0$1375$4fafbaef@reader2.news.tin.it> <4f61d9a2$0$1377$4fafbaef@reader2.news.tin.it> <4f61f9bf$0$1381$4fafbaef@reader2.news.tin.it> Date: Fri, 16 Mar 2012 01:29:12 +1100 Subject: Re: Python is readable 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.12 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: 17 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1331821755 news.xs4all.nl 6867 [2001:888:2000:d::a6]:55534 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:21675 On Fri, Mar 16, 2012 at 1:16 AM, Kiuhnm wrote: > Don't worry. Soon you'll be using C++0x :))) I use gcc/g++ with most of the new features enabled. There's some pretty handy features in it. Frankly, though, if I'd known about Cython when I started the current project, I would have argued to write it all in Python and Cify (is that a word?) the most performance-critical sections afterwards, instead of writing it in C++. It'd be a lot of hassle to change it now, but if anyone else is looking at writing a large project in C "for performance", I would strongly recommend writing in Python or Pike first. (Some day, I'm going to have to actually try Cython. But I know enough of embedding/extending Python to know that the technique would definitely be viable, and Cython can only make it easier.) ChrisA