Message159941
| Author |
pitrou |
| Recipients |
frankmillman, ghaering, pitrou |
| Date |
2012年05月04日.15:46:54 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1336146415.0.0.654301844153.issue14720@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Can be reproduced with:
>>> con = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_DECLTYPES)
>>> cur = con.cursor()
>>> cur.execute("CREATE TABLE t (x TIMESTAMP)")
<sqlite3.Cursor object at 0x7f90a4f69ea0>
>>> cur.execute("INSERT INTO t (x) VALUES ('2012-04-04 15:06:00.456')")
<sqlite3.Cursor object at 0x7f90a4f69ea0>
>>> cur.execute("SELECT * FROM t")
<sqlite3.Cursor object at 0x7f90a4f69ea0>
>>> cur.fetchall()
[(datetime.datetime(2012, 4, 4, 15, 6, 0, 456),)] |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2012年05月04日 15:46:55 | pitrou | set | recipients:
+ pitrou, ghaering, frankmillman |
| 2012年05月04日 15:46:55 | pitrou | set | messageid: <1336146415.0.0.654301844153.issue14720@psf.upfronthosting.co.za> |
| 2012年05月04日 15:46:54 | pitrou | link | issue14720 messages |
| 2012年05月04日 15:46:54 | pitrou | create |
|