Kind Regards,

Abdur-Rahmaan Janhangeer
Mauritius


On Thu, Apr 2, 2020 at 9:52 PM Brett Cannon <brett@python.org> wrote:

That's what help() is for. The __repr__ is meant to help during development with some succinct representation of the object (hence why they typically have an identifier to help tell equal objects apart). Including docstrings and such is not a goal for the repr and would make it no longer succinct.

This means we have a __repr__ option in packages (Without Steven's snippet above)?