icecream icon indicating copy to clipboard operation
icecream copied to clipboard

Truncated output

Open GedToon opened this issue 2 years ago • 1 comments

Given this example:

fred = [["q", "w", "e", "r", "t", "y"] for z in range(50)] ic(fred)

It only prints the first 24 and a bit lines. Am I doing something wrong?

GedToon avatar Dec 29 '23 20:12 GedToon

@GedToon thank you for providing sample code to reproduce this issue. did you solve this?

i unfortunately cant reproduce this issue:

./scratch.py 2>&1 >/dev/null | wc -l
      50
% cat scratch.py
#!/usr/bin/env python3

from icecream import ic

fred = [["q", "w", "e", "r", "t", "y"] for z in range(50)]
ic(fred)

gruns avatar Jan 10 '25 00:01 gruns

@GedToon I can't reproduce this either.

It might be something with the terminal emulator, or another issue that is not related to icecream. I would be happy to reopen the issue as soon as new information is provided.

Jakeroid avatar Aug 26 '25 07:08 Jakeroid