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 jesstess
Recipients ghaering, jesstess, pitrou, xapple
Date 2014-04-28.06:03:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1398665004.47.0.520502906121.issue13583@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks for the ticket and patch, xapple!

I updated the patch to address the compiler warning and use assertEqual.

While testing, I noticed that slicing with steps wasn't supported, so I expanded the sqlite3.Row slicing code to support steps, and added some additional tests.

The slicing code in Modules/_sqlite/row.c:pysqlite_row_subscript is unfortunately pretty redundant with the slicing code in Objects/tupleobject.c. It'd be better to either be able to factor the code from both into a function (but I couldn't see how to do this without making it part of the public API), or have tuple, sqlite.Row, etc.  implement a shared slicing interface. Perhaps we should defer that decision to a future ticket, though.

Note that even after this patch, sqlite.Row instances don't support negative indices.

* This patch passes `make patchcheck`.
* The full test suite passes with this patch.
* There are no build warnings related to the patch.
History
Date User Action Args
2014-04-28 06:03:24jesstesssetrecipients: + jesstess, ghaering, pitrou, xapple
2014-04-28 06:03:24jesstesssetmessageid: <1398665004.47.0.520502906121.issue13583@psf.upfronthosting.co.za>
2014-04-28 06:03:24jesstesslinkissue13583 messages
2014-04-28 06:03:24jesstesscreate