summaryrefslogtreecommitdiff
path: root/decorator/README.txt
diff options
context:
space:
mode:
authormicheles <micheles@micheles-mac>2010-05-22 09:08:40 +0200
committermicheles <micheles@micheles-mac>2010-05-22 09:08:40 +0200
commit4ffb6bd356fdfd4451402e5141e3deb552340a32 (patch)
tree255ae9f8efb6ce1ead5d961da0977edea2c9d976 /decorator/README.txt
parentdfc0684ec52f422f209e4651ab8b0937d9cad115 (diff)
downloadmicheles-4ffb6bd356fdfd4451402e5141e3deb552340a32.tar.gz
Version 3.2 of the decorator module
Diffstat (limited to 'decorator/README.txt')
-rw-r--r--decorator/README.txt27
1 files changed, 22 insertions, 5 deletions
diff --git a/decorator/README.txt b/decorator/README.txt
index b6e0b62..8469081 100644
--- a/decorator/README.txt
+++ b/decorator/README.txt
@@ -7,14 +7,31 @@ The decorator module requires Python 2.4.
Installation:
-Copy the file decorator.py somewhere in your Python path.
+$ python setup.py install
Testing:
-Run
+For Python 2.4, 2.5, 2.6, 2.7 run
$ python documentation.py
-This should work perfectly with Python 2.7 and Python 2.6 and give a few
-expected errors with Python 2.5 and 2.4 (some inner details such as the
-introduction of the ArgSpec namedtuple and Thread.__repr__ changed).
+for Python 3.X run
+
+$ python documentation3.py
+
+You will see a few innocuous errors with Python 2.4 and 2.5, because
+some inner details such as the introduction of the ArgSpec namedtuple
+and Thread.__repr__ changed. You may safely ignore them.
+
+Notice:
+
+You may get into trouble if in your system there is an older version
+of the decorator module; in such a case remove the old version.
+
+Documentation:
+
+There are two versions of the documentation, one for `Python 2`_ and one
+for `Python 3`_ .
+
+.. _Python 2: documentation.html
+.. _Python 3: documentation3.html