Lines Matching refs:referent
1548 ``'_'`` will be an attribute of the proxy and not an attribute of the referent:
1654 in a different process. The shared object is said to be the *referent* of the
1655 proxy. Multiple proxy objects may have the same referent.
1657 A proxy object has methods which invoke corresponding methods of its referent
1658 (although not every method of the referent will necessarily be available through
1660 referent can:
1677 the referent, whereas applying :func:`repr` will return the representation of
1682 corresponding manager's process then unpickling it will produce the referent
1689 >>> a.append(b) # referent of a now contains referent of b
1706 One should just use a copy of the referent instead when making comparisons.
1714 Call and return the result of a method of the proxy's referent.
1716 If ``proxy`` is a proxy whose referent is ``obj`` then the expression ::
1754 Return a copy of the referent.
1756 If the referent is unpicklable then this will raise an exception.
1764 Return the representation of the referent.
1771 deregisters itself from the manager which owns its referent.