[issue14720] sqlite3 microseconds
Lowe Thiderman added the comment: Add patch for 2.7 branch with regression test. -- keywords: +patch Added file: http://bugs.python.org/file29188/issue14720.diff ___ Python tracker <http://bugs.python.org/issue14
[issue14720] sqlite3 microseconds
Lowe Thiderman added the comment: > Can convert_timestamp(val) be implemented as > datetime.datetime.strptime(val.decode(), '%Y-%m-%d %H:%M:%S.%f')? No. The microseconds are not always included, as can be seen by the current implementation. Nice idea though! --