Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #72991 > unrolled thread
| Started by | Chris Angelico <rosuav@gmail.com> |
|---|---|
| First post | 2014-06-09 04:21 +1000 |
| Last post | 2014-06-09 04:21 +1000 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: Decorating one method of a class C with another method of class C? Chris Angelico <rosuav@gmail.com> - 2014-06-09 04:21 +1000
| From | Chris Angelico <rosuav@gmail.com> |
|---|---|
| Date | 2014-06-09 04:21 +1000 |
| Subject | Re: Decorating one method of a class C with another method of class C? |
| Message-ID | <mailman.10899.1402251682.18130.python-list@python.org> |
On Mon, Jun 9, 2014 at 4:04 AM, Dan Stromberg <drsalists@gmail.com> wrote:
> I have a class that's operating on a socket.
>
> I'd like to have simple operations on that socket like "list
> configured hosts", "allow connection to host", etc. And I'd like them
> to be decorated with "reconnected_to_server_if_needed".
>
> I'll probably end up putting a try/except in each simple operation,
> making them a bit less simple.
Can you have the decorator outside the class, calling a regular method
to do its main work?
def recon_if_needed(f):
def inner(self, *a, **kw):
if self.disconnected: self.connect()
return f(self, *a, **kw)
return inner
class SocketWorker:
@recon_if_needed
def send_packet(self, packet):
assert not self.disconnected
ChrisA
Back to top | Article view | comp.lang.python
csiph-web