-
-
Notifications
You must be signed in to change notification settings - Fork 170
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
Preserve non-decodable %-sequences intact when unquote. #532
Preserve non-decodable %-sequences intact when unquote. #532
Conversation
Codecov Report
@@ Coverage Diff @@
## master #532 +/- ##
==========================================
- Coverage 99.72% 99.72% -0.01%
==========================================
Files 4 4
Lines 739 737 -2
Branches 167 165 -2
==========================================
- Hits 737 735 -2
Misses 2 2
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
e3eb8bb
to
ec902bc
Compare
ec902bc
to
600d5c5
Compare
@@ -12,7 +12,7 @@ junit_suite_name = yarl_test_suite | |||
|
|||
|
|||
[flake8] | |||
ignore = E301,E302,E704,W503,W504,F811 | |||
ignore = E203,E301,E302,E704,W503,W504,F811 |
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'd rather inject a few noqa
s if it's really necessary
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.
Too many noqa
s should be injected. blake
produces code incompatible with flake8
.
Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
The downside is the loss of performance.
After:
|
…rchaka/yarl into unquoting-incremental-decoder
Fixed the performance regression in Cython:
|
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.
LGTM!
Closes #517.