[Python-Dev] Documenting Python's float.__str__()

2020-01-20 Thread Karl O. Pinc
Hello, There appears to be extremely minimal documentation on how floats are formatted on output. All I really see is that float.__str__() is float.__repr__(). So that means that float->str->float does not result in a different value. It would be nice if the output format for float was

[Python-Dev] Re: About "python-porting" mail list

2020-01-20 Thread Facundo Batista
El mar., 14 de ene. de 2020 a la(s) 16:36, Mark Sapiro (m...@msapiro.net) escribiĆ³: > > The list has been removed. The archives are still available at > . > Thank you!! -- .Facundo Blog: http://www.taniquetil.com.ar/plog/ PyAr:

[Python-Dev] Re: Questions about CPython's behavior on addition operator -- binary_op1 (abstract.c) and nb_add (typeobject.c)

2020-01-20 Thread Raphaƫl Monat
I'm also keen to understand this and think I can elucidate a little, from my study of the code. The perspective of someone who *didn't* write it might help, but I defer to the authors' version when it appears. Thank you! I'd be happy to know the authors' opinion as well. A crucial