Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!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.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python': 0.08; 'extension.': 0.09; 'readable': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:80.91.229.12': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'received:lo.gmane.org': 0.09; 'from:addr:behnel.de': 0.16; 'from:addr:stefan_ml': 0.16; 'from:name:stefan behnel': 0.16; 'subject:() ': 0.16; 'rewrite': 0.18; 'this?': 0.19; 'header:In- Reply-To:1': 0.22; 'stefan': 0.24; 'subject: ?': 0.24; 'code': 0.25; 'class': 0.29; 'quite': 0.31; 'certainly': 0.32; 'minor': 0.32; 'changes': 0.32; 'header:User-Agent:1': 0.33; 'to:addr :python-list': 0.33; 'received:84': 0.34; 'header:X-Complaints- To:1': 0.34; 'subject:How': 0.35; 'received:org': 0.37; 'using': 0.37; "i'd": 0.39; 'subject:: ': 0.39; 'to:addr:python.org': 0.40; 'more': 0.61; 'your': 0.61; 'efficient': 0.61; 'subject:call': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Stefan Behnel Subject: Re: How do I call super() in c extention ? Date: Fri, 27 Jan 2012 08:48:06 +0100 References: <4F22060D.1050203@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: dslb-084-056-016-128.pools.arcor-ip.net User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:9.0) Gecko/20111220 Thunderbird/9.0 In-Reply-To: <4F22060D.1050203@gmail.com> 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: 12 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1327650499 news.xs4all.nl 6910 [2001:888:2000:d::a6]:39961 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:19522 umedoblock, 27.01.2012 03:03: > I'd like to call super() in c extension. > I'd like to rewrite class Baa as c extension. Have you considered using Cython for this? It will allow you to do exactly that with only minor changes to your Python code (if any). And it's quite likely that the C code that it generates from your Python code will be more efficient than what you'd write manually. Certainly more readable and maintainable. Stefan