Jaymon / pout

Python pretty print on steroids
MIT License
29 stars 0 forks source link

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

Closed Jaymon closed 6 months ago

Jaymon commented 1 year ago

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 commented 6 months ago

This was added at some point