summaryrefslogtreecommitdiff
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
commit520732a48d542b0ce8f0c662563fcf146cc655bf (patch)
treeb695e7b8b7e18b9de5ee336ea86b1982a2d957c6
parenta1c190eebbbffcc705182c2166938ff32a528eb7 (diff)
downloadsix-520732a48d542b0ce8f0c662563fcf146cc655bf.tar.gz
doc tweaks
-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