- Python Home
- About
- News
- Documentation
- Downloads
- Community
- Foundation
- Developer's Guide
- Issue Tracker
- Issues
- Summaries
- User
- Administration
- Help
Message215459
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:25 | vstinner | set | recipients: + vstinner |
| 2014-04-03 17:07:25 | vstinner | set | messageid: <1396544845.43.0.82545828662.issue21147@psf.upfronthosting.co.za> |
| 2014-04-03 17:07:25 | vstinner | link | issue21147 messages |
| 2014-04-03 17:07:25 | vstinner | create | |

