diff options
Diffstat (limited to 'Doc/library/sqlite3.rst')
-rw-r--r-- | Doc/library/sqlite3.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index c7c553f..d849247 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -562,16 +562,11 @@ Row Objects If two :class:`Row` objects have exactly the same columns and their members are equal, they compare equal. - .. versionchanged:: 2.6 - Added iteration and equality (hashability). - .. method:: keys This method returns a tuple of column names. Immediately after a query, it is the first member of each tuple in :attr:`Cursor.description`. - .. versionadded:: 2.6 - Let's assume we initialize a table as in the example given above:: conn = sqlite3.connect(":memory:") |