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.

Author serhiy.storchaka
Recipients berker.peksag, ghaering, rhettinger, serhiy.storchaka, terry.reedy, vlad
Date 2019-03-03.13:39:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1551620342.91.0.0735666598435.issue35889@roundup.psfhosted.org>
In-reply-to
Content
I have the same doubts as Berker. sqlite3.Row represents a data from a database. Databases are used in particularly for storing a large amount of data which can not be all loaded in RAM. Therefore sqlite3.Row can contain a data with a very long repr.

If you need to inspect the sqlite3.Row object, it is easy to convert it to a list. If you want to see keys together with values, it is not hard to make a list of key-value pairs or a dict: list(zip(row.keys(), row)) or dict(zip(row.keys(), row)).
History
Date User Action Args
2019-03-03 13:39:02serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, terry.reedy, ghaering, berker.peksag, vlad
2019-03-03 13:39:02serhiy.storchakasetmessageid: <1551620342.91.0.0735666598435.issue35889@roundup.psfhosted.org>
2019-03-03 13:39:02serhiy.storchakalinkissue35889 messages
2019-03-03 13:39:02serhiy.storchakacreate