Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #8587
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <ian.g.kelly@gmail.com> |
| 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; 'args': 0.05; 'subject:Python': 0.06; 'char': 0.07; '__name__': 0.09; 'func': 0.09; 'none:': 0.09; 'wed,': 0.12; 'wrote:': 0.15; "'\\n')": 0.16; "'__main__':": 0.16; '**kwargs)': 0.16; '**kwargs):': 0.16; '*args,': 0.16; '50)': 0.16; '\xa0def': 0.16; 'cc:addr:python- list': 0.16; 'pm,': 0.16; 'def': 0.16; 'cc:2**0': 0.21; 'cc:no real name:2**0': 0.22; 'header:In-Reply-To:1': 0.22; '\xa0if': 0.23; 'function': 0.26; 'message-id:@mail.gmail.com': 0.28; 'cc:addr:python.org': 0.30; 'class': 0.31; 'none': 0.35; 'passed': 0.37; 'received:google.com': 0.38; 'received:209.85.161': 0.38; 'received:209.85': 0.38; 'subject:: ': 0.38; '8bit%:6': 0.39; 'subject:with': 0.39; 'received:209': 0.40; 'directly?': 0.84 |
| 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:content-transfer-encoding; bh=ZO4CBrCOpBMKskiABg3dmVB5LH6CMeYHegMKlwUf9Ag=; b=x+HsnW3Aof1VobCYMl2H6rnA8DA2W/shsLY++1UJRYcMdp+CF1QiRcZ5YmzTSfcJQN qhYw1vjWkS2IahiTlkQQryNgCvDrJG1pvM+8c7yHN175qvGKbfpUULPPvS4zJH1SzOwn dqt2G1XQ5v72iE7/vwal1JwdnUXg688vbtf70= |
| MIME-Version | 1.0 |
| In-Reply-To | <4E0B9949.1040805@stoneleaf.us> |
| References | <d35e1e82-410b-471b-a3c7-379c1822adb0@m22g2000yqh.googlegroups.com> <4e0a0a8b$1@dnews.tpgi.com.au> <4E0B5F7C.7030802@codicesoftware.com> <4E0B7D6A.1080404@stoneleaf.us> <BANLkTimW4=Gdvfh4d5sD-Phzo8qJUuXbrw@mail.gmail.com> <4E0B9949.1040805@stoneleaf.us> |
| From | Ian Kelly <ian.g.kelly@gmail.com> |
| Date | Wed, 29 Jun 2011 15:26:22 -0600 |
| Subject | Re: Using decorators with argument in Python |
| To | Ethan Furman <ethan@stoneleaf.us> |
| Content-Type | text/plain; charset=ISO-8859-1 |
| Content-Transfer-Encoding | quoted-printable |
| 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 <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.513.1309382813.1164.python-list@python.org> (permalink) |
| Lines | 44 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1309382813 news.xs4all.nl 21822 [2001:888:2000:d::a6]:46418 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | x330-a1.tempe.blueboxinc.net comp.lang.python:8587 |
Show key headers only | View raw
On Wed, Jun 29, 2011 at 3:29 PM, Ethan Furman <ethan@stoneleaf.us> wrote:
> 8<----------------------------------------------------------------
> class enclose(object):
> func = None
> def __init__(self, char='#'):
> self.char = char
> if callable(char): # was a function passed in directly?
> self.char = '#' # use default char
> self.func = char
> def __call__(self, func=None, *args, **kwargs):
> if self.func is None:
> self.func = func
> return self
> if func is not None:
> args = (func, ) + args
> return self._call(*args, **kwargs)
> def _call(self, *args, **kwargs):
> print("\n" + self.char * 50)
> self.func(*args, **kwargs)
> print(self.char * 50 + '\n')
> if __name__ == '__main__':
> @enclose
> def test1():
> print('Spam!')
> @enclose('-')
> def test2():
> print('Eggs!')
> @enclose
> def test3(string):
> print(string)
> @enclose('^')
> def test4(string):
> print(string)
> test1()
> test2()
> test3('Python')
> test4('Rules! ;)')
> 8<----------------------------------------------------------------
@enclose
def test5(string, func):
print(func(string))
test5('broken', func=str.upper)
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Using decorators with argument in Python Jigar Tanna <poisonousrattle5@gmail.com> - 2011-06-28 09:52 -0700
Re: Using decorators with argument in Python Lie Ryan <lie.1296@gmail.com> - 2011-06-29 03:06 +1000
Re: Using decorators with argument in Python John Posner <jjposner@codicesoftware.com> - 2011-06-29 13:23 -0400
Re: Using decorators with argument in Python Ethan Furman <ethan@stoneleaf.us> - 2011-06-29 12:30 -0700
Re: Using decorators with argument in Python Ian Kelly <ian.g.kelly@gmail.com> - 2011-06-29 13:29 -0600
Re: Using decorators with argument in Python Ethan Furman <ethan@stoneleaf.us> - 2011-06-29 14:29 -0700
Re: Using decorators with argument in Python Ian Kelly <ian.g.kelly@gmail.com> - 2011-06-29 15:26 -0600
Re: Using decorators with argument in Python Ethan Furman <ethan@stoneleaf.us> - 2011-06-29 14:51 -0700
Re: Using decorators with argument in Python Duncan Booth <duncan.booth@invalid.invalid> - 2011-06-30 09:00 +0000
Re: Using decorators with argument in Python John Posner <jjposner@codicesoftware.com> - 2011-07-01 11:18 -0400
Re: Using decorators with argument in Python Ian Kelly <ian.g.kelly@gmail.com> - 2011-06-28 11:20 -0600
Re: Using decorators with argument in Python Ben Finney <ben+python@benfinney.id.au> - 2011-06-29 08:19 +1000
csiph-web