From: R David Murray Date: Thu, 5 Jun 2014 19:16:38 +0000 (-0400) Subject: #21653: fix doc for return type of sqlite3.Row.keys(). X-Git-Tag: v3.4.2rc1~433 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=092135ebc81cb18fe441b5ce2472401b7e0a9048;p=thirdparty%2FPython%2Fcpython.git #21653: fix doc for return type of sqlite3.Row.keys(). --- diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index c2e6080a395a..6097e7a30d7e 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -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::