This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Implement __repr__ for classes in csv module
Type: enhancement Stage:
Components: Library (Lib) Versions: Python 3.10
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: cool-RR
Priority: normal Keywords:

Created on 2020-06-05 16:54 by cool-RR, last changed 2022-04-11 14:59 by admin.

Messages (1)
msg370768 - (view) Author: Ram Rachum (cool-RR) * Date: 2020-06-05 16:54
Why see this:

    <csv.DictReader object at 0x00000000029E51C0>

When you can see this: 

    <csv.DictReader name=satellite_data.csv columns=7>

It could show columns=? if they weren't read yet. Any other info would be good too.

This applies to all classes in the csv module.
History
Date User Action Args
2022-04-11 14:59:32adminsetgithub: 85052
2020-06-05 16:54:02cool-RRcreate