From 7b02ef008571d8976542b14bbc6a56d2291f40e6 Mon Sep 17 00:00:00 2001 From: R David Murray Date: Thu, 5 Jun 2014 15:15:43 -0400 Subject: [PATCH] #21653: fix doc for return type of sqlite3.Row.keys(). --- Doc/library/sqlite3.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 941e315de6..ff634c0b96 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -617,7 +617,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`. .. versionadded:: 2.6 -- 2.50.1