john rickman
john rickman
This problem still exists nearly a year later. (running on mac mini via IDLE using Python3.8 from icecream import ic a =123 ic(a) [38;5;247mic[39m[38;5;245m|[39m[38;5;245m [39m[38;5;247ma[39m[38;5;245m:[39m[38;5;245m [39m[38;5;36m123[39m >>>
``` ''' test icecream ''' from icecream import ic answer = 'hola mondo' ic(answer) ``` Output from the above code on a Mac or a RISC OS machine is a...
Here is a solution to the 'strange output ' issue. ``` ''' test icecream ''' import sys from icecream import ic # direct sys.stderr to a file sys.stderr = open('log.txt',...