Re: Implementing chain of responsibility

2009-03-09 Thread Chris Rebert
On Mon, Mar 9, 2009 at 3:54 AM, koranthala wrote: > On Mar 9, 12:16 pm, Chris Rebert wrote: >> On Sun, Mar 8, 2009 at 11:53 PM, koranthala wrote: >> > Hi, >> >    I want to implement chain of responsibility pattern in Python (for >> > a Django project) >> >    The problem that I see is a rather

Re: Implementing chain of responsibility

2009-03-09 Thread koranthala
On Mar 9, 12:16 pm, Chris Rebert wrote: > On Sun, Mar 8, 2009 at 11:53 PM, koranthala wrote: > > Hi, > >    I want to implement chain of responsibility pattern in Python (for > > a Django project) > >    The problem that I see is a rather odd one - how to link the > > subclasses with the super cl

Re: Implementing chain of responsibility

2009-03-09 Thread Chris Rebert
On Sun, Mar 8, 2009 at 11:53 PM, koranthala wrote: > Hi, >    I want to implement chain of responsibility pattern in Python (for > a Django project) >    The problem that I see is a rather odd one - how to link the > subclasses with the super class. Grabbing out my copy of Head First Design Patte

Implementing chain of responsibility

2009-03-08 Thread koranthala
Hi, I want to implement chain of responsibility pattern in Python (for a Django project) The problem that I see is a rather odd one - how to link the subclasses with the super class. Ex: Suppose the two child classes are as given below (A1, A2 child classes of A) class A: ... class A1(