Lines Matching refs:referent
1553 ``'_'`` will be an attribute of the proxy and not an attribute of the referent:
1659 in a different process. The shared object is said to be the *referent* of the
1660 proxy. Multiple proxy objects may have the same referent.
1662 A proxy object has methods which invoke corresponding methods of its referent
1663 (although not every method of the referent will necessarily be available through
1665 referent can:
1682 the referent, whereas applying :func:`repr` will return the representation of
1687 corresponding manager's process then unpickling it will produce the referent
1694 >>> a.append(b) # referent of a now contains referent of b
1711 One should just use a copy of the referent instead when making comparisons.
1719 Call and return the result of a method of the proxy's referent.
1721 If ``proxy`` is a proxy whose referent is ``obj`` then the expression ::
1759 Return a copy of the referent.
1761 If the referent is unpicklable then this will raise an exception.
1769 Return the representation of the referent.
1776 deregisters itself from the manager which owns its referent.