diff options
author | Michele Simionato <michele.simionato@gmail.com> | 2015-03-16 16:19:10 +0100 |
---|---|---|
committer | Michele Simionato <michele.simionato@gmail.com> | 2015-03-16 16:19:10 +0100 |
commit | 4dbca25bb139bead4221ab19eade93cfd7ce16ea (patch) | |
tree | 1b12a77bf441212a690d97558cdd9e1de9707bb1 | |
parent | 50e45b33ed7a5fcda777532d5cac50dc6e9bfb67 (diff) | |
download | python-decorator-git-4dbca25bb139bead4221ab19eade93cfd7ce16ea.tar.gz |
Fixed docs
-rw-r--r-- | CHANGES.txt | 4 | ||||
-rw-r--r-- | documentation.py | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 3a6c1fc..5595fb6 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,9 +2,9 @@ HISTORY ---------- 3.4.1 Ported the repository from GoogleCode to GitHub and added Travis CI - support. Tests are now run with the command python test.py -v. + support. Tests are executed with the new command `python test.py -v`. setuptools is now mandatory in Python 3. The suggested - installation tool is pip, not easy_install. Supported IronPython + installation tool is `pip`, not `easy_install`. Supported IronPython and other Python implementations without sys._getframe, as requested by Doug Blank (2015/03/16) 3.4.0 Added the ability to use classes and generic callables as callers and diff --git a/documentation.py b/documentation.py index 4825fa8..9f5c111 100644 --- a/documentation.py +++ b/documentation.py @@ -780,8 +780,7 @@ you will get a ``NameError``: Finally, the implementation is such that the decorated function attribute ``.func_globals`` is a *copy* of the original function -attribute, just as thee attribute dictionary -of the decorated function. +attribute, just as the attribute dictionary of the decorated function. .. code-block:: python |