-
-
Notifications
You must be signed in to change notification settings - Fork 32.6k
bpo-30217: add the operators ~ and | to the index #1502
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@marco-buttu, thanks for your PR! By analyzing the history of the files in this pull request, we identified @birkenfeld, @ncoghlan and @benjaminp to be potential reviewers. |
Doc/library/stdtypes.rst
Outdated
@@ -394,10 +394,13 @@ Bitwise Operations on Integer Types | |||
pair: bitwise; operations | |||
pair: shifting; operations | |||
pair: masking; operations | |||
pair: inversion; operations |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inversion or inverting?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this index entry is not needed. ~
is a bitwise operation. There are no separate index entries for bitwise conjunction and disjunction.
Thanks @serhiy-storchaka, I remove the last commit (that introduced the |
@serhiy-storchaka maybe we could merge it. |
Yes, thank you for the reminder. Do you mind to backport the change to other branches? |
Thanks for the PRs @marco-buttu 🎉 |
Fix bpo-30217: Missing entry for the tilde (~) operator in the Index. Also the
|
operator was not indexed.