Implementing chain of responsibility

2009-03-09 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

Re: Implementing chain of responsibility

2009-03-09 Thread Chris Rebert
On Sun, Mar 8, 2009 at 11:53 PM, koranthala koranth...@gmail.com 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

Re: Implementing chain of responsibility

2009-03-09 Thread koranthala
On Mar 9, 12:16 pm, Chris Rebert c...@rebertia.com wrote: On Sun, Mar 8, 2009 at 11:53 PM, koranthala koranth...@gmail.com 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

Re: Implementing chain of responsibility

2009-03-09 Thread Chris Rebert
On Mon, Mar 9, 2009 at 3:54 AM, koranthala koranth...@gmail.com wrote: On Mar 9, 12:16 pm, Chris Rebert c...@rebertia.com wrote: On Sun, Mar 8, 2009 at 11:53 PM, koranthala koranth...@gmail.com wrote: Hi,    I want to implement chain of responsibility pattern in Python (for a Django