summaryrefslogtreecommitdiff
path: root/documentation3.rst
diff options
context:
space:
mode:
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