summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-08-21 22:46:32 -0500
committerBenjamin Peterson <benjamin@python.org>2013-08-21 22:46:32 -0500
commit918918a8bdd836200598e9c0a79524c1095f915e (patch)
tree652fe37c9df515bb941eeafed886347ebb1530f7
parentfa68836baa4e22b69d7fd753f22165c73f0423ee (diff)
downloadsix-918918a8bdd836200598e9c0a79524c1095f915e.tar.gz
rewrite sentence a bit
-rw-r--r--documentation/index.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/index.rst b/documentation/index.rst
index 7ca33f0..1b22e32 100644
--- a/documentation/index.rst
+++ b/documentation/index.rst
@@ -302,8 +302,8 @@ Python 2 and 3.
on Python 2.
- Requires Python 2.6 or later (for class decoration). For use on Python
- 2.5 and earlier, use the legacy syntax::
+ Note that class decorators require Python 2.6. However, the effect of the
+ decorator can be emulated on Python 2.4 and 2.5 like so::
class MyClass(object):
...