[Python-checkins] cpython (3.5): Issue #29123: Make CheckSqlTimestamp more robust

berker.peksag python-checkins at python.org
Sat Dec 31 14:47:36 EST 2016


https://hg.python.org/cpython/rev/bb64ae455490
changeset:   105914:bb64ae455490
branch:      3.5
parent:      105909:19376765d7c3
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Sat Dec 31 22:48:55 2016 +0300
summary:
  Issue #29123: Make CheckSqlTimestamp more robust

files:
  Lib/sqlite3/test/types.py |  3 +--
  1 files changed, 1 insertions(+), 2 deletions(-)


diff --git a/Lib/sqlite3/test/types.py b/Lib/sqlite3/test/types.py
--- a/Lib/sqlite3/test/types.py
+++ b/Lib/sqlite3/test/types.py
@@ -382,8 +382,7 @@
     @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]

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list