(original) (raw)
changeset: 89204:93d7f8223370 parent: 89201:b077ee45f14f parent: 89203:66c7791d9841 user: Benjamin Peterson benjamin@python.org date: Sat Feb 15 13:20:28 2014 -0500 description: merge 3.3 (#20080) diff -r b077ee45f14f -r 93d7f8223370 Lib/sqlite3/test/factory.py --- a/Lib/sqlite3/test/factory.py Sat Feb 15 13:03:20 2014 -0500 +++ b/Lib/sqlite3/test/factory.py Sat Feb 15 13:20:28 2014 -0500 @@ -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""" /benjamin@python.org