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 pitrou
Recipients exhuma, ncoghlan, pitrou, pmoody
Date 2014-03-02.13:56:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1393768576.32.0.905312706739.issue20825@psf.upfronthosting.co.za>
In-reply-to
Content
I don't think "in" is the right operator for this. You can draw an analogy with sets:

>>> a = {1,2}
>>> b = {1,2,3}
>>> a <= b
True
>>> a in b
False

In mathematical terms, there is a difference between inclusion (being a subset of) and containment (being an element of).
History
Date User Action Args
2014-03-02 13:56:16pitrousetrecipients: + pitrou, ncoghlan, pmoody, exhuma
2014-03-02 13:56:16pitrousetmessageid: <1393768576.32.0.905312706739.issue20825@psf.upfronthosting.co.za>
2014-03-02 13:56:16pitroulinkissue20825 messages
2014-03-02 13:56:16pitroucreate