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 vstinner
Recipients vstinner
Date 2014-04-03.17:07:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1396544845.43.0.82545828662.issue21147@psf.upfronthosting.co.za>
In-reply-to
Content
>>> import sqlite3
>>> c=sqlite3.connect(":memory:")
>>> c.execute("select 1")
<sqlite3.Cursor object at 0x7fd11e6a9110>
>>> c.execute("select 1").fetchall()
[(1,)]
>>> c.execute("\0select 1").fetchall()
[]
History
Date User Action Args
2014-04-03 17:07:25vstinnersetrecipients: + vstinner
2014-04-03 17:07:25vstinnersetmessageid: <1396544845.43.0.82545828662.issue21147@psf.upfronthosting.co.za>
2014-04-03 17:07:25vstinnerlinkissue21147 messages
2014-04-03 17:07:25vstinnercreate