On Saturday, September 2, 2017 at 7:45:14 PM UTC-5, Steve D'Aprano wrote:
> On Sun, 3 Sep 2017 08:34 am, Chris Roberts wrote:
>
> > Perhaps someone here could help me to get this into
> > perspective. Somehow when we start to feed an instance as
> > the argument in a new instance. my head explodes
On Saturday, September 2, 2017 at 6:34:59 PM UTC-4, Chris Roberts wrote:
> Perhaps someone here could help me to get this into perspective.
> Somehow when we start to feed an instance as the argument in a new instance.
> my head explodes..
> in this case...
> a = Foo()
> b = Bar(a)
> So...
> a
On Sun, 3 Sep 2017 08:34 am, Chris Roberts wrote:
> Perhaps someone here could help me to get this into perspective.
> Somehow when we start to feed an instance as the argument in a new instance.
> my head explodes.. in this case...
> a = Foo()
> b = Bar(a)
> So...
> a is a 'Foo instance' with pr
> On Sep 2, 2017, at 3:34 PM, Chris Roberts wrote:
>
> Perhaps someone here could help me to get this into perspective.
> Somehow when we start to feed an instance as the argument in a new instance.
> my head explodes..
> in this case...
> a = Foo()
> b = Bar(a)
> So...
> a is a 'Foo instance
Perhaps someone here could help me to get this into perspective.
Somehow when we start to feed an instance as the argument in a new instance. my
head explodes..
in this case...
a = Foo()
b = Bar(a)
So...
a is a 'Foo instance' with properties and methods.
b is a 'Bar instance'
Since b is using