summaryrefslogtreecommitdiff
path: root/documentation3.rst
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2015-03-16 16:26:37 +0100
committerMichele Simionato <michele.simionato@gmail.com>2015-03-16 16:26:37 +0100
commitb1755bb74675d373560cffc2bc3a4f5098d58dbc (patch)
treedf89cff882c4179ee2091024fc55ba925bc57203 /documentation3.rst
parent4dbca25bb139bead4221ab19eade93cfd7ce16ea (diff)
downloadpython-decorator-git-b1755bb74675d373560cffc2bc3a4f5098d58dbc.tar.gz
Added a markdown README
Diffstat (limited to 'documentation3.rst')
-rw-r--r--documentation3.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/documentation3.rst b/documentation3.rst
index ad4a8c8..8de9f70 100644
--- a/documentation3.rst
+++ b/documentation3.rst
@@ -952,9 +952,8 @@ you will get a ``NameError``:
def f(_func_):
return _call_(_func_, _func_)
-Finally, the implementation is such that the decorated function contains
-a *copy* of the original function dictionary
-(``vars(decorated_f) is not vars(f)``):
+Finally, the implementation is such that the decorated function shares
+the original function dictionary:
.. code-block:: python