Re: [Python-ideas] math.nextafter

2017-02-04 Thread tritium-list
The presence of the function in C99’s math.h isn’t strictly useful unless it is also in the MSVC math.h. MSVC only supports a subset of C99 From: Python-ideas [mailto:python-ideas-bounces+tritium-list=sdamon@python.org] On Behalf Of Juraj Sukop Sent: Saturday, February 4, 2017 6:31 AM

Re: [Python-ideas] Delayed Execution via Keyword

2017-02-20 Thread tritium-list
> -Original Message- > From: Python-ideas [mailto:python-ideas-bounces+tritium- > list=sdamon@python.org] On Behalf Of Michel Desmoulin > Sent: Monday, February 20, 2017 3:30 AM > To: python-ideas@python.org > Subject: Re: [Python-ideas] Delayed Execution via Ke

Re: [Python-ideas] discontinue iterable strings

2016-08-21 Thread tritium-list
From: Python-ideas [mailto:python-ideas-bounces+tritium-list=sdamon@python.org] On Behalf Of ? Sent: Saturday, August 20, 2016 5:56 PM To: python-ideas <python-ideas@python.org> Subject: Re: [Python-ideas] discontinue iterable strings On Sun, Aug 21, 2016 at 12:28 AM Alexander

Re: [Python-ideas] Non-ASCII in Python syntax? [was: Null coalescing operator]

2016-10-30 Thread tritium-list
> -Original Message- > From: Python-ideas [mailto:python-ideas-bounces+tritium- > list=sdamon@python.org] On Behalf Of Paul Moore > Sent: Sunday, October 30, 2016 8:22 AM > To: Stephen J. Turnbull <turnbull.stephen...@u.tsukuba.ac.jp> > Cc: Python-Ideas

Re: [Python-ideas] Show more info when `python -vV`

2016-10-14 Thread tritium-list
only really need to know the commit hash and compiler if you are sending a bug report about the C... and since you know when you are doing that... I don't think its uncalled for to have the one liner. > -Original Message- > From: Python-ideas [mailto:python-ideas-bounces+tritium-

Re: [Python-ideas] fnmatch.filter_false

2017-05-17 Thread tritium-list
> -Original Message- > From: Python-ideas [mailto:python-ideas-bounces+tritium- > list=sdamon@python.org] On Behalf Of Oleg Broytman > Sent: Wednesday, May 17, 2017 12:44 PM > To: python-ideas@python.org > Subject: Re: [Python-ideas] fnmatch.filter_false > > On

Re: [Python-ideas] fnmatch.filter_false

2017-05-17 Thread tritium-list
python.org > Subject: RE: [Python-ideas] fnmatch.filter_false > > > -----Original Message- > > From: Python-ideas [mailto:python-ideas-bounces+tritium- > > list=sdamon@python.org] On Behalf Of Oleg Broytman > > Sent: Wednesday, May 17, 2017 12:44 PM > >

Re: [Python-ideas] fnmatch.filter_false

2017-05-17 Thread tritium-list
> -Original Message- > From: Python-ideas [mailto:python-ideas-bounces+tritium- > list=sdamon@python.org] On Behalf Of Steven D'Aprano > Sent: Wednesday, May 17, 2017 9:01 PM > To: python-ideas@python.org > Subject: Re: [Python-ideas] fnmatch.filter_false > &

Re: [Python-ideas] tweaking the file system path protocol

2017-05-23 Thread tritium-list
> -Original Message- > From: Python-ideas [mailto:python-ideas-bounces+tritium- > list=sdamon@python.org] On Behalf Of Koos Zevenhoven > Sent: Tuesday, May 23, 2017 5:31 PM > To: Serhiy Storchaka <storch...@gmail.com> > Cc: python-ideas <python-idea

Re: [Python-ideas] fnmatch.filter_false

2017-05-18 Thread tritium-list
> -Original Message- > From: Python-ideas [mailto:python-ideas-bounces+tritium- > list=sdamon@python.org] On Behalf Of Steven D'Aprano > Sent: Thursday, May 18, 2017 9:01 AM > To: python-ideas@python.org > Subject: Re: [Python-ideas] fnmatch.filter_false > &

[Python-ideas] Re: Python __main__ function

2020-05-28 Thread tritium-list
(Apologies to Chris, reply vs. replay all error on my part) > -Original Message- > From: Chris Angelico > > People can already put all their main logic into a function. If you want to unit- > test your main function, that's the best way to do it. > The trouble is, how much goes into

[Python-ideas] Re: Python GIL Thoughts

2020-05-29 Thread tritium-list
> -Original Message- > From: Paul Sokolovsky > Sent: Friday, May 29, 2020 2:26 PM > To: redrad...@gmail.com > Cc: python-ideas@python.org > Subject: [Python-ideas] Re: Python GIL Thoughts > > Hello, > > On Fri, 29 May 2020 14:19:40 - > redrad...@gmail.com wrote: > > > Yesterday

[Python-ideas] Re: NAN handling in statistics functions

2021-08-29 Thread tritium-list
Not to go off on too much of a tangent, but isn't NaN unorderable? Its greater than nothing, and less than nothing, so you can't even really sort a list with a NaN value in it (..though I'm sure python does sort it by some metric for practical reasons) - it would be impossible to find a NaN with