Sergey B Kirpichev
Sergey B Kirpichev
Ok, I think I'm able to reproduce that "issue". Seems to be yet another instance of #657: ```python >>> import mpmath as mp >>> mp.pretty = True >>> mp.dps =...
Let's close this. In case someone else is willing to help: https://groups.google.com/g/mpmath/c/08tD8Eqb5ZU
#264 for pickling intervals
Please fix merge conflicts an reopen, if you wish
Hmm, "Reopen and comment" button looks as gray for me... Feel free to open a new pr, if this seems relevant to you.
This is a stale pr with conflicts. I believe, pytest configuration/conftest.py should be changed instead. But feel free to reopen, if you disagree.
@experiencedft, I was able to run your example with few added type casts: ```diff $ diff a.py b.py --- a.py 2023-03-29 06:52:33.806878771 +0300 +++ b.py 2023-03-29 06:53:38.920911124 +0300 @@ -12,12...
@MaxGaukler could you please fix merge conflicts?
> mpmath.nstr(mpf('2.74650025508198e+107310'), 107311) isn't converting to correct number. @shubhamkumarpanday, could you say which "correct number" do you expect here?
Ok, I would guess that you should increase prec/dps to get a "correct number". Consider this example: ```pycon >>> nstr(mpf('2.746501e+10'), 10) '2.746501e+10' >>> nstr(mpf('2.746501e+10'), 11) '27465010000.0' >>> mp.dps = 5...