PGPKey.from_file,from_blob: Drop failed filtering of keyid mapping #454
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This appears to have been introduced in
38a4f9f nearly 9 years ago, but it doesn't look like it ever worked.
It's not clear to me why this index of keys by key ID is returned at all in these functions, but since September 2014 (v0.3.0) the index has always returned the key ID of the primary key anyway.
There are a few things broken in this particular line:
~
iffingerprint.keyid
doesn't work for some reason: that won't match anything.None
gets passed as the second object in the tuple, but the second object should be eitherTrue
orFalse
, suggesting thatt
is being misused.Rather than try to salvage something that i don't understand in the first place, i figure it's better to drop it and acknowledge the status quo.