RE: How to debug python + curses? [was: RE: Applying winpdb_reborn]

2021-05-31 Thread pjfarley3
> -Original Message- > From: Cameron Simpson > Sent: Sunday, May 30, 2021 6:07 PM > To: Python > Subject: Re: How to debug python + curses? [was: RE: Applying winpdb_reborn] > > On 31May2021 07:46, Chris Angelico wrote: > Also untried, but should work: > > Open another terminal, note

RE: How to debug python + curses? [was: RE: Applying winpdb_reborn]

2021-05-31 Thread pjfarley3
> -Original Message- > From: Dennis Lee Bieber > Sent: Sunday, May 30, 2021 4:32 PM > To: python-list@python.org > Subject: Re: How to debug python + curses? [was: RE: Applying winpdb_reborn] > > On Sun, 30 May 2021 13:26:40 -0400, declaimed the > following: > > Follow-up to my pr

RE: How to debug python + curses? [was: RE: Applying winpdb_reborn]

2021-05-31 Thread pjfarley3
> -Original Message- > From: Chris Angelico > Sent: Sunday, May 30, 2021 5:47 PM > To: Python > Subject: Re: How to debug python + curses? [was: RE: Applying winpdb_reborn] > > Never had this problem with curses per se (partly because I've used it very > little), > but a more general

Re: python 3.9.5

2021-05-31 Thread boB Stepp
On Mon, May 31, 2021 at 8:43 AM said ganoune wrote: > > Hi > Just installed python 3.9.5 in my HP laptop, cant open it. > Laptop hp I3 running with windows 10. Did you try going to your Start Menu list of programs? There should be a Python folder. Click to expand. Click on IDLE to open an IDE-

Re: How to debug python + curses? [was: RE: Applying winpdb_reborn]

2021-05-31 Thread Cameron Simpson
On 30May2021 20:36, Dennis Lee Bieber wrote: >On Mon, 31 May 2021 08:07:21 +1000, Cameron Simpson >declaimed the following: >>Open another terminal, note its terminal device with the "tty" >>command. >>Start your programme like this: >>python .. 2>/dev/tty-of-the-other-termina >> >

Re: Definition of "property"

2021-05-31 Thread Irv Kalb
> On May 30, 2021, at 10:15 AM, Jon Ribbens via Python-list > wrote: > > On 2021-05-30, Irv Kalb wrote: >> I understand what a "property" is, how it is used and the benefits, >> but apparently my explanation hasn't made the light bulb go on for my >> editor. The editor is asking for a defin

Farewell, for now :)

2021-05-31 Thread Kyle Stanley
Hi all, Last week, I started a new thread on discuss.python.org about my intention to take a further extended break from open source to continue my mental health healing process. Just wanted to announce it in the other channels as well s

Re: Functions as Enum member values

2021-05-31 Thread Colin McPhail via Python-list
> On 31 May 2021, at 18:24, Peter Otten <__pete...@web.de> wrote: > > On 31/05/2021 17:57, Colin McPhail via Python-list wrote: >> Hi, >> According to the enum module's documentation an Enum-based enumeration's >> members can have values of any type: >> "Member values can be anything: int

Re: Functions as Enum member values

2021-05-31 Thread Peter Otten
On 31/05/2021 17:57, Colin McPhail via Python-list wrote: Hi, According to the enum module's documentation an Enum-based enumeration's members can have values of any type: "Member values can be anything: int, str, etc.." You didn't read the fineprint ;) """ The rules for what is all

Functions as Enum member values

2021-05-31 Thread Colin McPhail via Python-list
Hi, According to the enum module's documentation an Enum-based enumeration's members can have values of any type: "Member values can be anything: int, str, etc.." I defined one with functions as member values. This seemed to work as long as the functions were defined ahead of the enume

EuroPython 2021: Session List Available

2021-05-31 Thread Marc-Andre Lemburg
Our program work group (WG) has been working hard over the last week to select sessions for EuroPython 2021, based on your talk voting and our diversity criteria. We’re now happy to announce the initial list with more than 100 sessions, brought to you by more than 100 speakers.

Re: Definition of "property"

2021-05-31 Thread Greg Ewing
On 31/05/21 9:13 am, Jon Ribbens wrote: No, I said it pretends to be a *data* attribute. I don't think it's pretending to be anything. From the outside, it's just an attribute. Data attributes are more common than non-data attributes, so we tend to assume that an attribute is a data attribute

Re: Definition of "property"

2021-05-31 Thread Greg Ewing
On 31/05/21 4:57 am, Irv Kalb wrote: Perhaps the best I've found so far is from the Python documentation: A property object has getter, setter, and deleter methods usable as decorators that create a copy of the property with the corresponding accessor function set to the decorated function.

Re: Definition of "property"

2021-05-31 Thread Greg Ewing
On 31/05/21 8:20 am, Alan Gauld wrote: That's a very Pythonic description. If it's a book about Python, it needs to be. The word "property" has a very specialised meaning in Python. In some other languages it's used the way we use "attribute" in Python. So a Python-specific definition is nece

python 3.9.5

2021-05-31 Thread said ganoune
Hi Just installed python 3.9.5 in my HP laptop, cant open it. Laptop hp I3 running with windows 10. Thank you Sent from Mail for Windows 10 -- https://mail.python.org/mailman/listinfo/python-list

Re: Definition of "property"

2021-05-31 Thread Alan Gauld via Python-list
On 30/05/2021 23:57, Mike Dewhirst wrote: > > A property is an object method masquerading as a cachable object attribute Or a group of methods perhaps? -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Fli

Re: Definition of "property"

2021-05-31 Thread Jon Ribbens via Python-list
On 2021-05-30, Terry Reedy wrote: > Note: at least one person says a property *pretends* to be an attribute. No, I said it pretends to be a *data* attribute. It is effectively several methods in a trenchcoat pretending to be a variable. -- https://mail.python.org/mailman/listinfo/python-list

ANN: distlib 0.3.2 released on PyPI

2021-05-31 Thread Vinay Sajip via Python-list
I've recently released version 0.3.2 of distlib on PyPI [1]. For newcomers, distlib is a library of packaging functionality which is intended to be usable as the basis for third-party packaging tools. The main changes in this release are as follows: * Fixed #139: improved handling of errors relat