diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-06-05 15:17:01 -0400 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-06-05 15:17:01 -0400 |
commit | d1130e3d05aa3642d96091363ac83926af16ddbb (patch) | |
tree | f0f1ca90f0a93e2d560a20363fd2ceadf3d90e8f | |
parent | 55757419bd1928235ced02d0c4d7ebdadb8569b9 (diff) | |
parent | 092135ebc81cb18fe441b5ce2472401b7e0a9048 (diff) | |
download | cpython-git-d1130e3d05aa3642d96091363ac83926af16ddbb.tar.gz |
Merge: #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 c2e6080a39..6097e7a30d 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:: |