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 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:55pitrousetrecipients: + pitrou, ghaering, frankmillman
2012-05-04 15:46:55pitrousetmessageid: <1336146415.0.0.654301844153.issue14720@psf.upfronthosting.co.za>
2012-05-04 15:46:54pitroulinkissue14720 messages
2012-05-04 15:46:54pitroucreate