icecream
icecream copied to clipboard
Truncated output
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 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)
@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.