Returns the referenced object. ```python x_ref = Reference(x) print(x is x_ref.deref()) ==> True ```
(self)
| 89 | unwrapped = property() |
| 90 | |
| 91 | def deref(self): |
| 92 | """Returns the referenced object. |
| 93 | |
| 94 | ```python |
| 95 | x_ref = Reference(x) |
| 96 | print(x is x_ref.deref()) |
| 97 | ==> True |
| 98 | ``` |
| 99 | """ |
| 100 | return self._wrapped |
| 101 | |
| 102 | |
| 103 | class ObjectIdentityDictionary(collections_abc.MutableMapping): |
no outgoing calls