Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5ef48d9

Browse files
committed
merge 3.3 (#20080)
2 parents 4267869 + 29352c4 commit 5ef48d9

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Lib/sqlite3/test/factory.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ def CheckSqliteRowAsTuple(self):
112112
self.con.row_factory = sqlite.Row
113113
row = self.con.execute("select 1 as a, 2 as b").fetchone()
114114
t = tuple(row)
115+
self.assertEqual(t, (row['a'], row['b']))
115116

116117
def CheckSqliteRowAsDict(self):
117118
"""Checks if the row object can be correctly converted to a dictionary"""

0 commit comments

Comments
 (0)