summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2014-10-10 11:24:35 -0400
committerBrett Cannon <brett@python.org>2014-10-10 11:24:35 -0400
commitce75a6122644c41e7a8ca5358ca61c12866d142d (patch)
tree63b4b68ae1db6739681ae3c177f2828df71194bd
parentf1755ac0f1837f146a1d95ff3ba9cef91f2ed5b5 (diff)
downloadsix-view.tar.gz
Remove references to kwargs for view*view
-rw-r--r--documentation/index.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/documentation/index.rst b/documentation/index.rst
index 1cd87de..93b1daa 100644
--- a/documentation/index.rst
+++ b/documentation/index.rst
@@ -203,25 +203,25 @@ functions and methods is the stdlib :mod:`py3:inspect` module.
*kwargs* are passed through to the underlying method.
-.. function:: viewkeys(dictionary, **kwargs)
+.. function:: viewkeys(dictionary)
Return a view over *dictionary*\'s keys. This replaces
``dictionary.viewkeys()`` on Python 2.7 and ``dictionary.keys()`` on
- Python 3. *kwargs* are passed through to the underlying method.
+ Python 3.
-.. function:: viewvalues(dictionary, **kwargs)
+.. function:: viewvalues(dictionary)
Return a view over *dictionary*\'s values. This replaces
``dictionary.viewvalues()`` on Python 2.7 and ``dictionary.values()`` on
- Python 3. *kwargs* are passed through to the underlying method.
+ Python 3.
-.. function:: viewitems(dictionary, **kwargs)
+.. function:: viewitems(dictionary)
Return a view over *dictionary*\'s items. This replaces
``dictionary.viewitems()`` on Python 2.7 and ``dictionary.items()`` on
- Python 3. *kwargs* are passed through to the underlying method.
+ Python 3.
.. function:: create_bound_method(func, obj)