Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!xlned.com!feeder7.xlned.com!newsfeed.xs4all.nl!newsfeed5.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.009 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'subject:Python': 0.06; 'decorator': 0.09; 'wed,': 0.12; 'wrote:': 0.15; 'callable,': 0.16; 'argument': 0.16; 'cc:addr:python-list': 0.16; 'pm,': 0.16; 'example.': 0.19; 'cc:2**0': 0.21; 'cc:no real name:2**0': 0.22; 'header:In-Reply-To:1': 0.22; 'way?': 0.23; 'code': 0.24; 'function': 0.26; 'bit': 0.28; 'message-id:@mail.gmail.com': 0.28; 'cc:addr:python.org': 0.30; "won't": 0.32; 'received:google.com': 0.38; 'received:209.85.161': 0.38; 'received:209.85': 0.38; 'takes': 0.38; 'subject:: ': 0.38; 'either': 0.39; 'subject:with': 0.39; 'received:209': 0.40; 'adapt': 0.67 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=QTVOuqjz3dcn6IejdaBdPjDIwFDgS09AdGb6c2YU6Lk=; b=VJZNDjnekOC+ru08q01qqZOsGUCpBbyddfLh6+dwpXAJ2KosuOGDazWLK+xYUW+Cdh azCgpllYqJM7/ExO0KYmR48hr67c3LBr1hC97pVBNfciu0fW2aEGtvMkZcISXVroT0ni Ye+1TrvQ27C+gPoc2wQakLzJD3TTWt8w7cWvs= MIME-Version: 1.0 In-Reply-To: <4E0B7D6A.1080404@stoneleaf.us> References: <4e0a0a8b$1@dnews.tpgi.com.au> <4E0B5F7C.7030802@codicesoftware.com> <4E0B7D6A.1080404@stoneleaf.us> From: Ian Kelly Date: Wed, 29 Jun 2011 13:29:42 -0600 Subject: Re: Using decorators with argument in Python To: Ethan Furman Content-Type: text/plain; charset=ISO-8859-1 Cc: python-list@python.org 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: 8 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1309375961 news.xs4all.nl 21857 [2001:888:2000:d::a6]:39406 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:8578 On Wed, Jun 29, 2011 at 1:30 PM, Ethan Furman wrote: > How about just having one bit of code that works either way? How would you adapt that code if you wanted to be able to decorate a function that takes arguments? This also won't work if the argument to the decorator is itself a callable, such as in the OP's example.