From 21fbe2bd2a8558d1c957902f6508662d6983736f Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Wed, 8 Feb 2017 14:01:57 +0000 Subject: [PATCH] Fixed argument name in executemany docs --- doc/src/cursor.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/cursor.rst b/doc/src/cursor.rst index 219a56f6..c03cea84 100644 --- a/doc/src/cursor.rst +++ b/doc/src/cursor.rst @@ -187,7 +187,7 @@ The ``cursor`` class .. method:: executemany(query, vars_list) Execute a database operation (query or command) against all parameter - tuples or mappings found in the sequence `seq_of_parameters`. + tuples or mappings found in the sequence *vars_list*. The function is mostly useful for commands that update the database: any result set returned by the query is discarded.