[Python-Dev] Re: name for new Enum decorator

2021-05-31 Thread Glenn Linderman
On 5/31/2021 1:37 PM, Luciano Ramalho wrote: On Fri, May 28, 2021 at 7:00 PM Joao S. O. Bueno wrote: "check_all_bits_defined" or something along it. Best suggestion so far. Similar: "ensure_all_bits_named" I am all for brainstorming, as we've been doing for a few days. Maybe we need to brain

[Python-Dev] Re: name for new Enum decorator

2021-05-31 Thread Luciano Ramalho
On Fri, May 28, 2021 at 7:00 PM Joao S. O. Bueno wrote: > "check_all_bits_defined" or something along it. Best suggestion so far. Similar: "ensure_all_bits_named" I am all for brainstorming, as we've been doing for a few days. Maybe we need to brainstorm some more. I just don't think the goal

[Python-Dev] 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

[Python-Dev] Re: Origins of iterators and iterables

2021-05-31 Thread Sebastian Rittau
Am 30.05.21 um 19:08 schrieb Guido van Rossum: Returning "self" as the iterator was originally only intended to paper over the case where you want to write it = iter(a) for x in it:     ... -- basically we wanted 'for x in iter(a)' and 'for x in a' to have the same meaning. The above use c