Jaymon / pout

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

Value objects wrapped with greater and less than #85

Closed Jaymon closed 6 months ago

Jaymon commented 6 months ago

Right now, if there is a body, the object looks something like this:

Foo instance at 0xNNNNNNNN
    <
        ...
    >

And if there isn't a body, then object would look something like this:

<Foo instance at 0xNNNNNNNN>

I'm wondering if I should do something like this if there is a body:

<Foo instance at 0xNNNNNNNN
    <
        ...
    >
>
Jaymon commented 6 months ago

Turns out I didn't really like this