Description of the bug
To Reproduce
import pint
ureg = pint.UnitRegistry()
mydict={'A':100.123456789 * ureg.kg,'B': 200.123456789}
mydict
returns
{'A': , 'B': 200.12345678912345}
but accessing the individual dictionary entries works fine:
import pint
ureg = pint.UnitRegistry()
mydict={'A':100.123456789 * ureg.kg,'B': 200.123456789}
mydict['A']
returns
Full traceback
Full traceback
Expected behavior
Environment information
python -m markdown_exec.debug # | xclip -selection clipboard
PASTE MARKDOWN OUTPUT HERE
Additional context