diff -r 37582f4d90b5 Lib/sqlite3/test/factory.py --- a/Lib/sqlite3/test/factory.py Wed Jan 01 13:06:02 2014 -0800 +++ b/Lib/sqlite3/test/factory.py Thu Jan 02 13:19:51 2014 +0800 @@ -112,6 +112,7 @@ self.con.row_factory = sqlite.Row row = self.con.execute("select 1 as a, 2 as b").fetchone() t = tuple(row) + self.assertEqual(t, (row['a'], row['b'])) def CheckSqliteRowAsDict(self): """Checks if the row object can be correctly converted to a dictionary"""