Re: [Tutor] self.name is calling the __set__ method of another class

2019-05-02 Thread Arup Rakshit
On 30/04/19 6:34 AM, David L Neil wrote: As Steven explained, this is a complex environment where only those with a good understanding of the meta abstractions would even want to play (IMHO). Perhaps you would be better served by actually writing some Python applications, and with such experien

Re: [Tutor] self.name is calling the __set__ method of another class

2019-05-02 Thread Arup Rakshit
On 30/04/19 5:11 AM, Steven D'Aprano wrote: On Tue, Apr 30, 2019 at 12:47:02AM +0530, Arup Rakshit wrote: I really didn't write that code by myself. The day I'll you will not see me here everyday :) . I was watching a PyCon video https://youtu.be/81S01c9zytE?t=8172 where the author used this co

Re: [Tutor] self.name is calling the __set__ method of another class

2019-05-02 Thread Mats Wichmann
On 5/2/19 9:25 AM, Arup Rakshit wrote: > On 30/04/19 6:34 AM, David L Neil wrote: >> As Steven explained, this is a complex environment where only those >> with a good understanding of the meta abstractions would even want to >> play (IMHO). Perhaps you would be better served by actually writing >>

Re: [Tutor] self.name is calling the __set__ method of another class

2019-05-02 Thread Alan Gauld via Tutor
On 02/05/2019 16:25, Arup Rakshit wrote: > such frustrated abstractions. :) I don't know why python exposed so many > things, Because by exposing it those few who do need to play with the internals can(*). Most of us just ignore it > Python doesn't work the way I am thinking it, and I am far be

[Tutor] pip issue

2019-05-02 Thread Anil Duggirala
hello, I executed the pip3 install --user -r contrib/requirements/requirements.txt (I actually did sudo before that). I then interrupted the process with Ctrl-C. Now, when I execute the same command I get: Collecting aiorpcX<0.18,>=0.17.0 (from -r contrib/requirements/requirements.txt (line 5))

Re: [Tutor] pip issue

2019-05-02 Thread Cameron Simpson
On 02May2019 17:24, Anil Duggirala wrote: I executed the pip3 install --user -r contrib/requirements/requirements.txt (I actually did sudo before that). Please don't use sudo for this. The notion "install" does not imply being root. The whole point of --user is to install packages in your

Re: [Tutor] pip issue

2019-05-02 Thread Mats Wichmann
On 5/2/19 6:14 PM, Cameron Simpson wrote: > On 02May2019 17:24, Anil Duggirala wrote: >> I executed the pip3 install --user -r >> contrib/requirements/requirements.txt (I actually did sudo before that). > > Please don't use sudo for this. The notion "install" does not imply > being root. > The w