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 rhettinger, serhiy.storchaka, wsanchez
Date 2018-05-26.07:45:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1527320740.0.0.682650639539.issue33651@psf.upfronthosting.co.za>
In-reply-to
Content
I have the same question. Do you have a concrete example where this can be useful?

sqlite3.Row is not a mapping. It is a sequence.

>>> import sqlite3
>>> import collections.abc
>>> issubclass(sqlite3.Row, collections.abc.Sequence)
True
History
Date User Action Args
2018-05-26 07:45:40serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, wsanchez
2018-05-26 07:45:40serhiy.storchakasetmessageid: <1527320740.0.0.682650639539.issue33651@psf.upfronthosting.co.za>
2018-05-26 07:45:39serhiy.storchakalinkissue33651 messages
2018-05-26 07:45:39serhiy.storchakacreate