Javier Garcia

Results 2 comments of Javier Garcia

I > See also [python/cpython#113804](https://github.com/python/cpython/issues/113804). Potentially, we could reuse 'x'/'X' format codes, but I think it's a good idea to be compatible with gmpy2 (and C) here. > > @javierelpianista...

I'm not a specialist in hex numbers but `gmpy2` gives a different output than the one in `test_format.py`: ```python >>> import gmpy2 >>> gmpy2.get_context().precision = 5300 >>> print(f"{gmpy2.mpfr('1.234567890123456789'):.20a}") # This...