From 6f3bf75e285f6632d5be0201d090ea158f18ad7c Mon Sep 17 00:00:00 2001 From: Michele Simionato Date: Mon, 16 Mar 2015 15:08:58 +0100 Subject: The decorated function dictionary is a copy of the original function dictionary --- documentation.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'documentation.py') diff --git a/documentation.py b/documentation.py index 1548b5c..0aab054 100644 --- a/documentation.py +++ b/documentation.py @@ -780,9 +780,8 @@ 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. On the other hand the function attribute dictionary -of the decorated function is just a reference to the -original function dictionary, i.e. ``vars(decorated_f) is vars(f)``: +attribute, just as thee attribute dictionary +of the decorated function. .. code-block:: python @@ -795,8 +794,8 @@ original function dictionary, i.e. ``vars(decorated_f) is vars(f)``: >>> traced_f.attr1 'something' >>> traced_f.attr2 = "something different" # setting attr - >>> f.attr2 # the original attribute did change - 'something different' + >>> f.attr2 # the original attribute did not change + 'something else' Compatibility notes --------------------------------------------------------------- -- cgit v1.2.1