Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed1.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.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; '"this': 0.03; 'http': 0.09; 'subject:()': 0.09; 'def': 0.12; 'wrote': 0.14; '(put': 0.16; '@property': 0.16; 'callable.': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'instance"': 0.16; 'lambda:': 0.16; 'overridden': 0.16; 'should.': 0.16; 'tying': 0.16; 'wrote:': 0.18; 'bit': 0.19; '>>>': 0.22; 'string,': 0.24; 'mon,': 0.24; 'post': 0.26; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'raise': 0.29; 'message-id:@mail.gmail.com': 0.30; '25,': 0.31; 'marc': 0.31; 'steven': 0.31; 'class': 0.32; 'skip:m 30': 0.32; 'skip:_ 10': 0.34; 'but': 0.35; 'received:google.com': 0.35; 'doing': 0.36; "i'll": 0.36; 'nov': 0.38; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'more': 0.64; 'here': 0.66; 'request.': 0.70; 'subject:skip:o 10': 0.84; '2013': 0.98 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=opzzQ7bx2NFn8OIZ+o73IksMzfNb/MyOEJV2kbr3Dvs=; b=nwzpYSRk45XD3513QJ4w2B7tp7hN6Z9klLQv3X+np7pKAlyqEy8PWesNA71nPU+jPe Uiq+nJzRxMwk/33b4ZaoakCbXA2BluY5Oq4dq9vvs5l/E1dXPejrDQ57Een7fv67sStb oMLt0N1Kxaci61IQ95GgnTFMlUzDsSX9K7yJRQu3sfSVmUFMmlrqXb5zbm0MGeRhtHcs PpfW54l6NJDakuRfW2+wCNxpQyadGjt0awwk4QAuw0vJXrz7UfVN72pIn50djglAjAQW lAh0Y7vJeBrSy7wuNn6sB62Wup1XH0Sm/i5eHFr92/xYJflCazCm/Q58Jvo2q7fomU0/ 0wxQ== MIME-Version: 1.0 X-Received: by 10.66.148.97 with SMTP id tr1mr762425pab.163.1385303832304; Sun, 24 Nov 2013 06:37:12 -0800 (PST) In-Reply-To: References: <529202e3$0$29993$c3e8da3$5496439d@news.astraweb.com> Date: Mon, 25 Nov 2013 01:37:12 +1100 Subject: Re: Implement logic on object.attribute and object.attribute() 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.15 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: 50 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1385303840 news.xs4all.nl 15985 [2001:888:2000:d::a6]:37834 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:60378 On Mon, Nov 25, 2013 at 1:16 AM, Marc Aymerich wrote: > ... def do_get(self): > ... # Do a HTTP GET request. > ... return "Get stuff" > ... def do_put(self): > ... # Do a HTTP PUT request. > ... return "Put stuff" To make this a bit more realistic, try this instead - tying in with what I said in response to Roy: class CallableString(str): # Like a string, but callable. def function(self): raise NotImplementedError( "this must be overridden on the instance" ) def __call__(self): return self.function() class Magic_HTTP_Thing: @property def attribute(self): result = CallableString(self.do_get()) result.function = lambda: self.do_put() return result def do_get(self): # Do a HTTP GET request. print("Doing the GET call, please wait...") time.sleep(1) return "Get stuff" def do_put(self): # Do a HTTP PUT request. print("Doing the PUT call, please wait...") time.sleep(1) return "Put stuff" (PUT or POST, makes no difference; I think you were looking for POST, but Steven wrote PUT here so I'll use that for simplicity) >>> Magic_HTTP_Thing().attribute() Doing the GET call, please wait... Doing the PUT call, please wait... 'Put stuff' And that's what you don't want happening. Your PUT / POST calls are going to take twice as long as they should. ChrisA