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 martin.panter
Recipients barry, eli.bendersky, ethan.furman, ezio.melotti, martin.panter, serhiy.storchaka
Date 2015-03-08.01:17:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425777431.4.0.927598605916.issue23591@psf.upfronthosting.co.za>
In-reply-to
Content
It would make more sense and be more consistent if the str() and repr() used one’s complement in all cases, i.e.:

self.assertEqual(str(Perm(~0)), "~0")

Also, the repr() seems to be doing a bad attempt at Python pseudo code. Instead of

<Perm.R|W: 3>

maybe it could be something like these:

<Perm.R|Perm.W: 3>  # Mirroring str() -> "Perm.R|Perm.W"
<Perm R|W: 3>
<Perm: R|W = 3>

I wonder if the addition (+) operator should also be overridden; I haven’t looked, but I suspect some people may do FLAG1 + FLAG2 instead of FLAG1 | FLAG2.
History
Date User Action Args
2015-03-08 01:17:11martin.pantersetrecipients: + martin.panter, barry, ezio.melotti, eli.bendersky, ethan.furman, serhiy.storchaka
2015-03-08 01:17:11martin.pantersetmessageid: <1425777431.4.0.927598605916.issue23591@psf.upfronthosting.co.za>
2015-03-08 01:17:11martin.panterlinkissue23591 messages
2015-03-08 01:17:10martin.pantercreate