diff -r 1fb9383baa5f Lib/sqlite3/test/factory.py --- a/Lib/sqlite3/test/factory.py Fri Dec 27 02:07:49 2013 -0500 +++ b/Lib/sqlite3/test/factory.py Fri Dec 27 17:14:12 2013 +0800 @@ -112,6 +112,8 @@ self.con.row_factory = sqlite.Row row = self.con.execute("select 1 as a, 2 as b").fetchone() t = tuple(row) + self.assertEqual(t[0], row["a"]) + self.assertEqual(t[1], row["b"]) def CheckSqliteRowAsDict(self): """Checks if the row object can be correctly converted to a dictionary"""