This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gdr@garethrees.org
Recipients ereuveni, fdrake, gdr@garethrees.org, pitrou
Date 2015-04-28.10:00:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1430215253.71.0.855664445293.issue24067@psf.upfronthosting.co.za>
In-reply-to
Content
Not just Iterator, but Container, Hashable, Iterable, and Sized too!

    >>> import weakref
    >>> class C: pass
    >>> o = C()
    >>> w = weakref.proxy(o)
    >>> from collections.abc import *
    >>> isinstance(w, Container)
    True
    >>> isinstance(w, Hashable)
    True
    >>> isinstance(w, Iterable)
    True
    >>> isinstance(w, Sized)
    True
History
Date User Action Args
2015-04-28 10:00:53gdr@garethrees.orgsetrecipients: + gdr@garethrees.org, fdrake, pitrou, ereuveni
2015-04-28 10:00:53gdr@garethrees.orgsetmessageid: <1430215253.71.0.855664445293.issue24067@psf.upfronthosting.co.za>
2015-04-28 10:00:53gdr@garethrees.orglinkissue24067 messages
2015-04-28 10:00:53gdr@garethrees.orgcreate