summaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-03-20 10:26:02 -0500
committerBenjamin Peterson <benjamin@python.org>2015-03-20 10:26:02 -0500
commitb56b6984df7d46dac80659906c32aa46aafe597e (patch)
treeb695e7b8b7e18b9de5ee336ea86b1982a2d957c6 /documentation
parent52d73916c4b0013372523149c728167a62cb3d1e (diff)
downloadsix-git-b56b6984df7d46dac80659906c32aa46aafe597e.tar.gz
doc tweaks
Diffstat (limited to 'documentation')
-rw-r--r--documentation/index.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/index.rst b/documentation/index.rst
index d838e38..99168ee 100644
--- a/documentation/index.rst
+++ b/documentation/index.rst
@@ -234,9 +234,9 @@ functions and methods is the stdlib :mod:`py3:inspect` module.
.. function:: create_unbound_method(func, cls)
- Return an unbound method object wrapping *func*. In Python 2, this will return
- a :func:`py3:types.MethodType` object. In Python 3 unbound methods do not
- exist and this wrapper will return *func*.
+ Return an unbound method object wrapping *func*. In Python 2, this will
+ return a :func:`py2:types.MethodType` object. In Python 3, unbound methods
+ do not exist and this wrapper will simply return *func*.
.. class:: Iterator