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 serhiy.storchaka
Recipients Saimadhav.Heblikar, cool-RR, eric.smith, ethan.furman, josh.r, pitrou, r.david.murray, rhettinger, scoder, serhiy.storchaka, steven.daprano
Date 2014-10-04.07:57:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412409436.33.0.2695585317.issue22515@psf.upfronthosting.co.za>
In-reply-to
Content
There are some properties of set comparison:

(a < b) == (a <= b and a != b)
(a <= b) == (a < b or a == b)
(a <= b and b <= a) == (a == b)
(a < b and b < a) == False
(a <= b) == (a - b == set())
if (a <= b and b <= c) then (a <= c)
(a <= b and a <= c) == (a <= (b & c))
(a <= c and b <= c) == ((a | b) <= c)

Is this true for Counter?
History
Date User Action Args
2014-10-04 07:57:16serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, pitrou, scoder, eric.smith, steven.daprano, r.david.murray, cool-RR, ethan.furman, Saimadhav.Heblikar, josh.r
2014-10-04 07:57:16serhiy.storchakasetmessageid: <1412409436.33.0.2695585317.issue22515@psf.upfronthosting.co.za>
2014-10-04 07:57:16serhiy.storchakalinkissue22515 messages
2014-10-04 07:57:16serhiy.storchakacreate