Message212551
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). |
|
Date |
User |
Action |
Args |
2014-03-02 13:56:16 | pitrou | set | recipients:
+ pitrou, ncoghlan, pmoody, exhuma |
2014-03-02 13:56:16 | pitrou | set | messageid: <1393768576.32.0.905312706739.issue20825@psf.upfronthosting.co.za> |
2014-03-02 13:56:16 | pitrou | link | issue20825 messages |
2014-03-02 13:56:16 | pitrou | create | |
|