]> granicus.if.org Git - python/commitdiff
#21653: fix doc for return type of sqlite3.Row.keys().
authorR David Murray <rdmurray@bitdance.com>
Thu, 5 Jun 2014 19:16:38 +0000 (15:16 -0400)
committerR David Murray <rdmurray@bitdance.com>
Thu, 5 Jun 2014 19:16:38 +0000 (15:16 -0400)
Doc/library/sqlite3.rst

index c2e6080a395a41c1d82f5ee454afe4fcc12f5a45..6097e7a30d7ec5f5cae6b5db5620b458a7fd7a25 100644 (file)
@@ -646,7 +646,7 @@ Row Objects
 
    .. method:: keys
 
-      This method returns a tuple of column names. Immediately after a query,
+      This method returns a list of column names. Immediately after a query,
       it is the first member of each tuple in :attr:`Cursor.description`.
 
 Let's assume we initialize a table as in the example given above::