pout icon indicating copy to clipboard operation
pout copied to clipboard

Object limits being hit should put the count (if available) after the elipses

Open Jaymon opened this issue 1 year ago • 0 comments

For example, a list that stops printing out after 100 rows:

foo = list (754) instance at 0x10ed70950
[
    0: <...>
    ...
]

should do something like this instead:

foo = list (754) instance at 0x10ed70950
[
    0: <...>
    ... 753 more rows ...
]

Jaymon avatar Jul 18 '22 20:07 Jaymon