diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-06-05 19:16:38 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-06-05 19:16:38 (GMT) |
commit | 092135ebc81cb18fe441b5ce2472401b7e0a9048 (patch) | |
tree | 458bc7f402a6ce12517fb605fcf4cb61ce162a8c | |
parent | 66f305b1a0b51074d26e5395f09f848b110e6d28 (diff) | |
download | cpython-092135ebc81cb18fe441b5ce2472401b7e0a9048.zip cpython-092135ebc81cb18fe441b5ce2472401b7e0a9048.tar.gz cpython-092135ebc81cb18fe441b5ce2472401b7e0a9048.tar.bz2 |
#21653: fix doc for return type of sqlite3.Row.keys().
-rw-r--r-- | Doc/library/sqlite3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index c2e6080..6097e7a 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:: |