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 Claudiu.Popa, ghaering, serhiy.storchaka
Date 2014-05-26.20:05:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401134745.16.0.844451458443.issue21584@psf.upfronthosting.co.za>
In-reply-to
Content
When integer index overflows C long, sqlite3.Row.__getitem__() doesn't raise an exception. Instead overflow exception is raised later.

>>> import sqlite3
>>> con = sqlite3.connect(":memory:")
>>> con.row_factory = sqlite3.Row
>>> row = con.execute("select 1 as a, 2 as b").fetchone()
>>> row[2**1000]
2
>>> 
OverflowError: Python int too large to convert to C long
History
Date User Action Args
2014-05-26 20:05:45serhiy.storchakasetrecipients: + serhiy.storchaka, ghaering, Claudiu.Popa
2014-05-26 20:05:45serhiy.storchakasetmessageid: <1401134745.16.0.844451458443.issue21584@psf.upfronthosting.co.za>
2014-05-26 20:05:45serhiy.storchakalinkissue21584 messages
2014-05-26 20:05:44serhiy.storchakacreate