Fixed argument name in executemany docs

This commit is contained in:
Daniele Varrazzo 2017-02-08 14:01:57 +00:00
parent b4b8b5f164
commit 21fbe2bd2a

View File

@ -187,7 +187,7 @@ The ``cursor`` class
.. method:: executemany(query, vars_list) .. method:: executemany(query, vars_list)
Execute a database operation (query or command) against all parameter 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: The function is mostly useful for commands that update the database:
any result set returned by the query is discarded. any result set returned by the query is discarded.