This repository was archived by the owner on Jan 22, 2026. It is now read-only.
Document that callables receive sanitized values#243
Merged
mreid-moz merged 1 commit intomozilla:masterfrom Dec 6, 2018
Merged
Document that callables receive sanitized values#243mreid-moz merged 1 commit intomozilla:masterfrom
mreid-moz merged 1 commit intomozilla:masterfrom
Conversation
Explain that replacing `key="a-value"` with `key=lambda x: x
in ("a-value", "b-value")` will not work.
Codecov Report
@@ Coverage Diff @@
## master #243 +/- ##
=======================================
Coverage 80.05% 80.05%
=======================================
Files 11 11
Lines 1053 1053
=======================================
Hits 843 843
Misses 210 210
Continue to review full report at Codecov.
|
1 similar comment
Codecov Report
@@ Coverage Diff @@
## master #243 +/- ##
=======================================
Coverage 80.05% 80.05%
=======================================
Files 11 11
Lines 1053 1053
=======================================
Hits 843 843
Misses 210 210
Continue to review full report at Codecov.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Explain that replacing
key="a-value"withkey=lambda x: x in ("a-value", "b-value")will not work.