john rickman

Results 3 comments of 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| a: 123 >>>

``` ''' 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',...