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

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


http://hg.python.org/cpython/rev/6c890b2739f4
changeset:   91043:6c890b2739f4
branch:      3.4
parent:      91040:a708844c1b8d
user:        R David Murray <rdmurray at bitdance.com>
date:        Thu Jun 05 15:16:38 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
@@ -646,7 +646,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`.
 
 Let's assume we initialize a table as in the example given above::

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


More information about the Python-checkins mailing list