aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-12-31 22:49:31 +0300
committerBerker Peksag <berker.peksag@gmail.com>2016-12-31 22:49:31 +0300
commit75d9016530369999e099a247f260f76f544dc20d (patch)
treec9b18aff49724985c523d3a3cf51beaa3947a921 /Lib/sqlite3
parentIssue #29119: Merge in ACK from 3.5 branch (diff)
parentIssue #29123: Make CheckSqlTimestamp more robust (diff)
downloadcpython-75d9016530369999e099a247f260f76f544dc20d.tar.gz
cpython-75d9016530369999e099a247f260f76f544dc20d.tar.bz2
cpython-75d9016530369999e099a247f260f76f544dc20d.zip
Issue #29123: Merge from 3.5
Diffstat (limited to 'Lib/sqlite3')
-rw-r--r--Lib/sqlite3/test/types.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/sqlite3/test/types.py b/Lib/sqlite3/test/types.py
index 0b5b3e7e3c2..6bc8d71def0 100644
--- a/Lib/sqlite3/test/types.py
+++ b/Lib/sqlite3/test/types.py
@@ -382,8 +382,7 @@ class DateTimeTests(unittest.TestCase):
@unittest.skipIf(sqlite.sqlite_version_info < (3, 1),
'the date functions are available on 3.1 or later')
def CheckSqlTimestamp(self):
- # SQLite's current_timestamp uses UTC time, while datetime.datetime.now() uses local time.
- now = datetime.datetime.now()
+ now = datetime.datetime.utcnow()
self.cur.execute("insert into test(ts) values (current_timestamp)")
self.cur.execute("select ts from test")
ts = self.cur.fetchone()[0]