[Python-checkins] cpython (2.7): #21653: fix doc for return type of sqlite3.Row.keys().

r.david.murray python-checkins at python.org
Thu Jun 5 21:17:20 CEST 2014


http://hg.python.org/cpython/rev/f51ecdac91c8
changeset:   91042:f51ecdac91c8
branch:      2.7
parent:      91026:ae76dd86affb
user:        R David Murray <rdmurray at bitdance.com>
date:        Thu Jun 05 15:15:43 2014 -0400
summary:
  #21653: fix doc for return type of sqlite3.Row.keys().

files:
  Doc/library/sqlite3.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -617,7 +617,7 @@
 
    .. 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list