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
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
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
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(