Re: How does the super type present itself and do lookups?

2020-03-09 Thread Adam Preble
On Monday, March 9, 2020 at 9:31:45 PM UTC-5, Souvik Dutta wrote: > This should be what you are looking for. > https://python-reference.readthedocs.io/en/latest/docs/functions/super.html I'm not trying to figure out how the super() function works, but rather the anatomy of the object is returns.

Re: How does the super type present itself and do lookups?

2020-03-09 Thread Souvik Dutta
This should be what you are looking for. https://python-reference.readthedocs.io/en/latest/docs/functions/super.html On Tue, 10 Mar, 2020, 5:50 am Adam Preble, wrote: > On Wednesday, March 4, 2020 at 11:13:20 AM UTC-6, Adam Preble wrote: > > Stuff > > I'm speculating that the stuff I don't see w

Re: Lock acquisition by the same thread - deadlock protection

2020-03-09 Thread Souvik Dutta
Sooyyy it was not meant to you On Tue, 10 Mar, 2020, 8:00 am Souvik Dutta, wrote: > This should be what you need. > https://python-reference.readthedocs.io/en/latest/docs/functions/super.html > > On Tue, 10 Mar, 2020, 7:02 am Yonatan Goldschmidt, < > yon.goldschm...@gmail.com> wrote: > >> I

Re: Lock acquisition by the same thread - deadlock protection

2020-03-09 Thread Souvik Dutta
This should be what you need. https://python-reference.readthedocs.io/en/latest/docs/functions/super.html On Tue, 10 Mar, 2020, 7:02 am Yonatan Goldschmidt, < yon.goldschm...@gmail.com> wrote: > I recently debugged a program hang, eventually finding out it's a deadlock > of a single thread, > res

Lock acquisition by the same thread - deadlock protection

2020-03-09 Thread Yonatan Goldschmidt
I recently debugged a program hang, eventually finding out it's a deadlock of a single thread, resulting from my usage of 2 libraries. One of them - call it library A - is reentrant & runs code in GC finalizers, while the other - library B - is not reentrant at all. Library B held one of its `thr

Re: How does the super type present itself and do lookups?

2020-03-09 Thread Adam Preble
On Wednesday, March 4, 2020 at 11:13:20 AM UTC-6, Adam Preble wrote: > Stuff I'm speculating that the stuff I don't see when poking are reserved slots. I figured out how much of a thing that is when I was digging around for how classes know how to construct themselves. I managed to figure out __

Re: Error while installing a python code

2020-03-09 Thread Barry Scott
> On 9 Mar 2020, at 14:18, Tim Ko wrote: > > Hello, > > I am trying to install a custom Python code but ran into an error. The error > presumably associated with cython. I tried a different compiler since Intel > compiler often crashes when using cython, but couldn't get it working. > > At

Re: Python download for windows

2020-03-09 Thread Terry Reedy
On 3/9/2020 6:16 AM, Mike Dewhirst wrote: Python isn't an ordinary program as understood by (most) Windows users. It needs a command-prompt in which to run interactively. Or, one can click the lower left Windows Start icon, find and click 'Python 3.8' (for instance) under 'P', and select eithe

Re: Error while installing a python code

2020-03-09 Thread Dieter Maurer
Tim Ko wrote at 2020-3-9 07:18 -0700: >I am trying to install a custom Python code but ran into an error. The error >presumably associated with cython. I tried a different compiler since Intel >compiler often crashes when using cython, but couldn't get it working. Almost surely, the compiler is

Re: Please solve this problem

2020-03-09 Thread Grant Edwards
On 2020-03-09, David Raymond wrote: >> It was a problem and it was solved. >> Check the second or third e-mail in the thread. >> >> Thank you. > > The first email was blank, > > The second email was from the same person and just said "Rply if solved" > > The third was a sarcastic reply to the bla

Re: Please solve this problem

2020-03-09 Thread Igor Korot
Hi, On Mon, Mar 9, 2020 at 11:56 AM David Raymond wrote: > > > It was a problem and it was solved. > > Check the second or third e-mail in the thread. > > > > Thank you. > > The first email was blank, > > The second email was from the same person and just said "Rply if solved" > > The third was a

Re: Error while installing a python code

2020-03-09 Thread Dieter Maurer
Tim Ko wrote at 2020-3-9 07:18 -0700: >I am trying to install a custom Python code but ran into an error. The error >presumably associated with cython. I tried a different compiler since Intel >compiler often crashes when using cython, but couldn't get it working. Almost surely, the compiler is

RE: Please solve this problem

2020-03-09 Thread David Raymond
> It was a problem and it was solved. > Check the second or third e-mail in the thread. > > Thank you. The first email was blank, The second email was from the same person and just said "Rply if solved" The third was a sarcastic reply to the blank emails with just: "Solved, answer is:" The fo

Re: [Python-ideas] Re: Possible Addition to Python Language: Marked Sub-condition

2020-03-09 Thread David Mertz
This isn't a terrible use of the walrus operator either. if blue_20 := (color==BLUE and count==20) or red_5 := (color==RED and count%5==0) rotate_the_wheel() # Common to the two sub-conditions if blue_20: # First sub-condition set_signal() if red_5: # Second sub-condition

RE: Python download for windows

2020-03-09 Thread Mike Dewhirst
HilaryPython isn't an ordinary program as understood by (most) Windows users.It needs a command-prompt in which to run interactively. In other words, after successful installation, open a command prompt (aka DOS prompt) and type "python". It should open, announce itself and display its character

Re: Error while installing a python code

2020-03-09 Thread Souvik Dutta
I dont know if this will work. But still something is better than nothing. https://stackoverflow.com/questions/11094718/error-command-gcc-failed-with-exit-status-1-while-installing-eventlet I am not a "spoofer" in case you get any warning. On Mon, Mar 9, 2020, 7:54 PM Tim Ko wrote: > Hello, > >

Re: pip UX Studies - help improve the usability of pip

2020-03-09 Thread Paul Moore
We've had some questions as to whether this survey is legitimate. I can confirm it is (speaking as a pip core developer). The link to a page describing this work is https://pyfound.blogspot.com/2019/12/moss-czi-support-pip.html, if anyone wants to find out more. Paul Moore On Sat, 7 Mar 2020 at 0

Re: Please solve this problem

2020-03-09 Thread Igor Korot
Hi, On Mon, Mar 9, 2020 at 9:22 AM Wildman via Python-list wrote: > > On Mon, 09 Mar 2020 11:47:24 +0530, sachin thakur wrote: > > What is the problem? If you attached a screenshot to your post > it was dropped. This is a text only group. Explain the problem > or put the screenshot on a cloud

Error while installing a python code

2020-03-09 Thread Tim Ko
Hello, I am trying to install a custom Python code but ran into an error. The error presumably associated with cython. I tried a different compiler since Intel compiler often crashes when using cython, but couldn't get it working. Attached is the installation error log. I have installed and upd

Re: Please solve this problem

2020-03-09 Thread Wildman via Python-list
On Mon, 09 Mar 2020 11:47:24 +0530, sachin thakur wrote: What is the problem? If you attached a screenshot to your post it was dropped. This is a text only group. Explain the problem or put the screenshot on a cloud site such as Dropbox and post the link. -- GNU/Linux user #557453 The cow di

Installation of python

2020-03-09 Thread Tim Ko
Hello, I am trying to install a custom Python package but ran into an error. The error presumably associated with cython. I tried a different compiler since Intel compiler often crashes when using cython, but couldn't get it working. Attached is the installation error log. I have installed and

Re: Python download for windows

2020-03-09 Thread Bob Gailer
:> You talk only about downloading - and the link you gave leads to the download page as a whole, so we can't guess the OS you - or your daughter - use. the subject line explicitly states "download for Windows" Bob Gailer -- https://mail.python.org/mailman/listinfo/python-list

EuroPython 2020: Call for Proposals now open

2020-03-09 Thread M.-A. Lemburg
We have opened the Call for Proposals today. It will be left open for three weeks and then close on: Sunday, March 29 23:59:59 CEST In order to submit a proposal, please log in to the site (or create an account first) and then proceed to the CFP page: * https://ep20

Re: Python download for windows

2020-03-09 Thread Sibylle Koczian
Am 09.03.2020 um 10:08 schrieb Hilary Ilsley: Hello We have been asked to download python so our daughter can complete her homework, only once we have down loaded it keeps going to "set up" and even after completing "modify" or "repair" it goes back to set up. https://www.python.org/downloads/

Re: Python download for windows

2020-03-09 Thread Bob Gailer
On Mar 9, 2020 5:22 AM, "Hilary Ilsley" wrote: > > Hello > > We have been asked to download python so our daughter can complete her homework, only once we have down loaded it keeps going to "set up" and even after completing "modify" or "repair" it goes back to set up. You're getting that respons

Re: Please solve this problem

2020-03-09 Thread Omar Abou Mrad
On Mon, Mar 9, 2020 at 11:21 AM sachin thakur wrote: > Rply if solved > > <..snip..> Solved, answer is: -- https://mail.python.org/mailman/listinfo/python-list

Python download for windows

2020-03-09 Thread Hilary Ilsley
Hello We have been asked to download python so our daughter can complete her homework, only once we have down loaded it keeps going to "set up" and even after completing "modify" or "repair" it goes back to set up. https://www.python.org/downloads/release/python-382/ -this is what we have downl

Re: Please solve this problem

2020-03-09 Thread sachin thakur
Rply if solved On Mon, 9 Mar, 2020, 11:47 AM sachin thakur, wrote: > -- https://mail.python.org/mailman/listinfo/python-list

Please solve this problem

2020-03-09 Thread sachin thakur
-- https://mail.python.org/mailman/listinfo/python-list