Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'thread,': 0.04; 'implements': 0.05; 'subject:Python': 0.06; '"""': 0.07; 'character,': 0.07; 'prints': 0.07; 'callable': 0.09; 'decorator': 0.09; 'header:In-reply-to:1': 0.09; 'output': 0.11; 'wrote:': 0.15; '"#"': 0.16; '"def"': 0.16; '"three': 0.16; '(instance': 0.16; '**kwargs)': 0.16; '**kwargs):': 0.16; '*args,': 0.16; 'class)': 0.16; "function's": 0.16; 'received:167.206.4': 0.16; 'received:cv.net': 0.16; 'received:hcvlny.cv.net': 0.16; 'received:srv.hcvlny.cv.net': 0.16; 'url:thread': 0.16; 'url:weblogs': 0.16; 'user-defined': 0.16; 'argument': 0.16; 'cc:addr:python-list': 0.16; 'pm,': 0.16; 'this:': 0.16; 'def': 0.16; 'functions,': 0.19; 'ryan': 0.19; 'pointed': 0.22; 'code': 0.24; 'bruce': 0.25; 'function': 0.26; 'skip:_ 20': 0.28; 'second': 0.29; 'object': 0.30; 'cc:addr:python.org': 0.30; 'fact': 0.30; 'cc:addr:gmail.com': 0.30; 'characters,': 0.30; 'nested': 0.30; 'class': 0.31; 'least': 0.31; 'lines': 0.31; 'print': 0.32; 'header:User-Agent:1': 0.34; 'skip:# 10': 0.34; 'function.': 0.35; 'lie': 0.35; 'skip:@ 10': 0.35; 'guys': 0.36; 'explain': 0.36; 'cc:2**1': 0.37; 'instead,': 0.37; 'using': 0.37; 'received:192': 0.38; 'subject:: ': 0.38; 'two': 0.38; 'perhaps': 0.39; 'skip:e 20': 0.39; 'subject:with': 0.39; 'called': 0.40; 'john': 0.62; 'levels': 0.62; 'huge': 0.64; 'url:jsp': 0.68; 'alternative': 0.70; 'advantages': 0.77; '__call__': 0.84; 'python2': 0.84 Date: Wed, 29 Jun 2011 13:23:08 -0400 From: John Posner Subject: Re: Using decorators with argument in Python In-reply-to: <4e0a0a8b$1@dnews.tpgi.com.au> To: Lie Ryan MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: 7BIT References: <4e0a0a8b$1@dnews.tpgi.com.au> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.18) Gecko/20110616 Thunderbird/3.1.11 Cc: python-list@python.org, poisonousrattle5@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: 66 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1309370011 news.xs4all.nl 21864 [2001:888:2000:d::a6]:53750 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:8573 On 2:59 PM, Lie Ryan wrote: >> Can any of you guys explain me advantages and disadvantages of >> using each of them > Simplicity is one, using @decor() means you have at least three-level > nested functions, which means the code is likely to be very huge and > perhaps unnecessarily. Bruce Eckel pointed out ( http://www.artima.com/weblogs/viewpost.jsp?thread=240808) that the result of "decoration" need not be a function. Instead, it can be an object (instance of a user-defined class) that's callable (because the class implements a __call__ method). Investigating how this fact fit in with the current thread, I came up with an alternative to the three levels of "def" (pronounced "three levels of death"). Following is code for two decorators: * the first one encloses the output of a function with lines of "#" characters, and is used like this: @enclose myfun(... * the second one encloses the output of a function with lines of a user-specified character, and is used like this: @enclose("&") myfun(... Here's the Python2 code for each one: ################## decorator to be called with no argument class enclose: """ class that can be used as a function decorator: prints a line of "#" before/after the function's output """ def __init__(self, funarg): self.func = funarg def __call__(self, *args, **kwargs): print "\n" + "#" * 50 self.func(*args, **kwargs) print "#" * 50 + "\n" ################## decorator to be called with argument def enclose(repeat_char): """ function that returns a class that can be used as a decorator: prints a line of before/after the function's output """ class _class_to_use_as_decorator: def __init__(self, funarg): self.func = funarg def __call__(self, *args, **kwargs): print "\n" + repeat_char * 50 self.func(*args, **kwargs) print repeat_char * 50 + "\n" return _class_to_use_as_decorator Best, John