-
-
Notifications
You must be signed in to change notification settings - Fork 945
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(parse_query_string): change the default value of
csv
to False
(
#2200) * feat(parse_query_string): change the default value of `csv` to `False` * docs(parse_query_string): improve docstring in the light of the new default * test(parse_query_string): resurrect some older tests for `csv=True`
- Loading branch information
Showing
4 changed files
with
30 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
The default value of the ``csv`` parameter in | ||
:func:`~falcon.uri.parse_query_string` was changed to ``False``, matching the | ||
default behavior of other parts of the framework (such as | ||
:attr:`req.params <falcon.Request.params>`, the test client, etc). | ||
If the old behavior fits your use case better, pass the ``csv=True`` keyword | ||
argument explicitly. |
This file contains 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
This file contains 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
This file contains 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